-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
28 lines (24 loc) · 1.33 KB
/
AndroidManifest.xml
File metadata and controls
28 lines (24 loc) · 1.33 KB
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:versionCode="1" android:versionName="1.1" package="knots2.browser">
<application android:label="@string/app_name"
android:debuggable="true" android:name="Knots" android:icon="@drawable/knots2">
<activity android:name=".KnotsListView" android:label="@string/app_name" android:screenOrientation="sensor">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".KnotsPlayer" android:label="@string/app_name"
android:launchMode="singleInstance" android:excludeFromRecents="true"
android:screenOrientation="landscape" android:noHistory="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="8" />
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"></uses-permission>
<instrumentation android:targetPackage="knots2.browser" android:name="android.test.InstrumentationTestRunner" android:functionalTest="false" android:handleProfiling="true"></instrumentation>
</manifest>