-
Notifications
You must be signed in to change notification settings - Fork 6
/
AndroidManifest.xml
52 lines (46 loc) · 2.58 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
48
49
50
51
52
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="jp.sfjp.webglmol.NDKmol"
android:versionCode="20"
android:versionName="0.97" >
<uses-sdk android:minSdkVersion="8" android:targetSdkVersion="10"/>
<!-- For GL ES 1.0, the line below is not required and minSdkVersion 4 is sufficient -->
<uses-feature android:glEsVersion="0x00020000" android:required="true" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name">
<activity
android:label="@string/app_name"
android:name="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=".MyPreferenceActivity" android:screenOrientation="portrait" />
<activity android:name=".PDBSearcher" android:configChanges="orientation|keyboardHidden"/>
<activity android:name=".PubChemSearcher" android:configChanges="orientation|keyboardHidden"/>
<activity android:name=".CACTUSSearcher" android:configChanges="orientation|keyboardHidden"/>
<activity android:name=".SearcherTab" android:configChanges="orientation|keyboardHidden"/>
<activity android:name=".FileBrowser" android:configChanges="orientation|keyboardHidden"/>
</application>
</manifest>