-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
45 lines (41 loc) · 2.1 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="auto"
package="com.example.webcomics"
android:versionCode="33"
android:versionName="4.2.0">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<supports-screens android:largeScreens="true" android:normalScreens="true" android:smallScreens="true" android:anyDensity="true" android:resizeable="true"></supports-screens>
<application
android:icon="@drawable/icon"
android:label="@string/app_name">
<activity android:name=".WebComicsActivity"
android:label="@string/app_name"
android:configChanges="keyboardHidden|orientation">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="xkcd.com" />
<data android:scheme="http" android:host="www.xkcd.com" />
</intent-filter>
</activity>
<activity android:label="@string/app_archive_label"
android:configChanges="keyboardHidden|orientation" android:name=".XkcdArchiveActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
</intent-filter>
</activity>
<activity
android:name="net.bytten.comicviewer.SettingsActivity"
android:label="@string/app_prefs_label">
</activity>
</application>
<uses-sdk android:minSdkVersion="3" android:targetSdkVersion="11"/>
</manifest>