forked from Awful/Awful.apk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
77 lines (77 loc) · 3.29 KB
/
Copy pathAndroidManifest.xml
File metadata and controls
77 lines (77 loc) · 3.29 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.ferg.awful"
android:versionCode="3"
android:versionName="1.1.1">
<uses-sdk
android:minSdkVersion="7"
/>
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true"
/>
<application
android:label="@string/app_name"
android:icon="@drawable/icon"
android:theme="@android:style/Theme.NoTitleBar"
android:name=".AwfulApplication"
>
<activity android:name="ForumsIndexActivity"
android:label="@string/app_name">
<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.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="http" android:host="forums.somethingawful.com" android:pathPrefix="/index.php"/>
<data android:scheme="http" android:host="forums.somethingawful.com" android:path="/"/>
<data android:scheme="http" android:host="forums.somethingawful.com" android:path=""/>
</intent-filter>
</activity>
<activity android:name="AwfulLoginActivity" />
<activity android:name="ThreadDisplayActivity">
<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" android:host="forums.somethingawful.com" android:pathPrefix="/showthread.php"/>
</intent-filter>
</activity>
<activity android:name="ForumDisplayActivity">
<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" android:host="forums.somethingawful.com" android:pathPrefix="/forumdisplay.php"/>
</intent-filter>
</activity>
<activity android:name="ProfileActivity" />
<activity android:name="SettingsActivity" />
<activity
android:name="UserCPActivity"
android:exported="true"
/>
<activity
android:name="PostReplyActivity"
android:windowSoftInputMode="adjustResize"
/>
<activity
android:name="UserCPShortcutActivity"
android:icon="@drawable/icon"
android:label="@string/usercp"
>
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<provider android:name="com.ferg.awful.provider.AwfulProvider"
android:authorities="com.ferg.awful.provider" />
</application>
<uses-permission android:name="android.permission.INTERNET" />
</manifest>