-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAndroidManifest.xml
161 lines (136 loc) · 6.37 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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="net.oddsoftware.android.feedscribe"
android:versionCode="18"
android:versionName="0.8.3"
>
<uses-configuration android:reqTouchScreen="notouch" android:reqFiveWayNav="true" />
<uses-configuration android:reqTouchScreen="finger" />
<uses-configuration android:reqTouchScreen="stylus" />
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:anyDensity="true"
/>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<!-- seems to work without this notification
<uses-permission android:name="android.permission.READ_PHONE_STATE" />
-->
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="8" />
<application
android:icon="@drawable/ic_launcher_feedscribe"
android:label="@string/app_name"
android:theme="@android:style/Theme.Light"
>
<activity
android:name=".ui.FeedsActivity"
android:label="@string/app_name"
android:launchMode="singleTop"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<!-- - no search yet
<intent-filter>
<action android:name="android.intent.action.SEARCH" />
</intent-filter>
<meta-data android:name="android.app.searchable" android:resource="@xml/searchable" />
-->
</activity>
<activity
android:name=".ui.PlayVideoActivity"
android:configChanges="keyboardHidden|orientation"
/>
<activity
android:name=".ui.PlayAudioActivity"
android:configChanges="keyboardHidden|orientation"
android:launchMode="singleTask"
/>
<activity android:name=".ui.PodcastsActivity" />
<activity android:name=".ui.DownloadsActivity" />
<activity android:name=".ui.NewsActivity" />
<activity android:name=".ui.FeedSettingsActivity" />
<activity android:name=".ui.FileDialog" />
<activity android:name=".ui.LogListActivity" />
<activity android:name=".ui.NewsPreferencesActivity" />
<activity android:name=".ui.ReceiveArticleActivity">
<intent-filter>
<action android:name="android.intent.action.SEND" />
<!-- <category android:name="android.intent.category.DEFAULT" /> -->
<!-- <data android:scheme="http" android:host="*" /> -->
</intent-filter>
</activity>
<activity
android:name=".ui.SubscribeActivity"
android:label="@string/subscribe_activity_label"
>
<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="*" android:pathPattern=".*\.xml" />
<data android:scheme="http" android:host="*" android:pathPattern=".*\.rss" />
</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:host="feeds.feedburner.com" />
<data android:host="feedproxy.google.com" />
<data android:host="feeds2.feedburner.com" />
<data android:host="feedsproxy.google.com" />
</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:mimeType="text/xml" android:scheme="http" />
<data android:mimeType="application/rss+xml" android:scheme="http" />
<data android:mimeType="application/atom+xml" android:scheme="http" />
</intent-filter>
</activity>
<activity
android:name=".ui.AddItemActivity"
android:label="@string/add_item_activity_label"
>
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
</activity>
<!-- The application's publisher ID assigned by AdMob -->
<meta-data android:value="a14d6461a37126a" android:name="ADMOB_PUBLISHER_ID" />
<!-- AdMobActivity definition -->
<activity
android:name="com.google.ads.AdActivity"
android:configChanges="keyboard|keyboardHidden|orientation|screenLayout"
/>
<service android:enabled="true" android:name=".service.FeedService" />
<receiver android:process=":remote" android:name=".service.ScheduleReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<!--
<provider
android:name=".data.PlaylistProvider"
android:authorities="net.oddsoftware.android.feedscribe"
android:exported="false"
/>
-->
<provider
android:name="net.oddsoftware.android.html.HttpCacheProvider"
android:authorities="net.oddsoftware.android.feedscribe.html.HttpCacheProvider"
android:exported="false"
/>
</application>
</manifest>