1 | <?xml version="1.0" encoding="utf-8"?> |
---|
2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
---|
3 | package="org.webstrips.android"> |
---|
4 | |
---|
5 | <application android:allowClearUserData="true" |
---|
6 | android:hasCode="true" android:debuggable="true" android:icon="@drawable/icon" |
---|
7 | android:name="WebStripsAndroid" android:description="@string/description" |
---|
8 | android:label="@string/title"> |
---|
9 | <service android:name="WebStripsService" android:enabled="true"></service> |
---|
10 | <activity android:name="ComicListActivity" android:launchMode="singleTask" android:allowTaskReparenting="false"> |
---|
11 | <intent-filter> |
---|
12 | <action android:name="android.intent.action.MAIN" /> |
---|
13 | <category android:name="android.intent.category.LAUNCHER" /> |
---|
14 | |
---|
15 | </intent-filter> |
---|
16 | </activity> |
---|
17 | |
---|
18 | <activity android:name="ComicViewerActivity" android:launchMode="singleTask" android:allowTaskReparenting="false"> |
---|
19 | <intent-filter> |
---|
20 | <action android:name="org.webstrips.VIEW"></action> |
---|
21 | </intent-filter> |
---|
22 | </activity> |
---|
23 | |
---|
24 | <activity android:name="ComicDetailsActivity" android:launchMode="singleTask" android:allowTaskReparenting="false"> |
---|
25 | <intent-filter> |
---|
26 | <action android:name="org.webstrips.INFO"></action> |
---|
27 | </intent-filter> |
---|
28 | </activity> |
---|
29 | |
---|
30 | <activity android:name="ComicImportActivity" |
---|
31 | android:screenOrientation="portrait" android:label="@string/import.title"> |
---|
32 | <intent-filter> |
---|
33 | <action android:name="android.intent.action.VIEW" /> |
---|
34 | <category android:name="android.intent.category.DEFAULT" /> |
---|
35 | <category android:name="android.intent.category.BROWSABLE" /> |
---|
36 | <data android:scheme="file" android:mimeType="*/*" android:pathPattern=".*\\.comic" android:host="*"></data> |
---|
37 | <data android:pathPrefix="/raw-attachment/wiki/Comics" android:host="webstrips.tnode.com" android:scheme="http" android:mimeType="*/*"></data> |
---|
38 | </intent-filter> |
---|
39 | </activity> |
---|
40 | </application> |
---|
41 | <uses-permission android:name="android.permission.DELETE_CACHE_FILES" /> |
---|
42 | <uses-permission android:name="android.permission.INTERNET" /> |
---|
43 | <uses-sdk android:minSdkVersion="3"></uses-sdk> |
---|
44 | </manifest> |
---|