-
Notifications
You must be signed in to change notification settings - Fork 0
/
AndroidManifest.xml
executable file
·47 lines (42 loc) · 2.37 KB
/
AndroidManifest.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.dva.ctz"
android:versionCode="15"
android:versionName="0.92" >
<uses-sdk android:minSdkVersion="4" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name">
<activity
android:label="@string/app_name"
android:name="jp.sfjp.webglmol.NDKmol.NDKmolActivity"
android:screenOrientation="portrait"
android:configChanges="orientation|keyboardHidden">
<intent-filter >
<action android:name="android.intent.action.MAIN" android:screenOrientation="portrait" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter >
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="http"/>
<data android:scheme="file"/>
<data android:host="*"/>
<data android:pathPattern=".*\\.pdb" />
<data android:pathPattern=".*\\.PDB" />
<data android:pathPattern=".*\\.mol" />
<data android:pathPattern=".*\\.MOL" />
<data android:pathPattern=".*\\.sdf" />
<data android:pathPattern=".*\\.SDF" />
</intent-filter>
</activity>
<activity android:name="jp.sfjp.webglmol.NDKmol.MyPreferenceActivity" ActivityscreenOrientation="portrait" />
<activity android:name="jp.sfjp.webglmol.NDKmol.PDBSearcher" android:configChanges="orientation|keyboardHidden"/>
<activity android:name="jp.sfjp.webglmol.NDKmol.PubChemSearcher" android:configChanges="orientation|keyboardHidden"/>
<activity android:name="jp.sfjp.webglmol.NDKmol.SearcherTab" android:configChanges="orientation|keyboardHidden"/>
<activity android:name="jp.sfjp.webglmol.NDKmol.FileBrowser" android:configChanges="orientation|keyboardHidden"/>
</application>
</manifest>