-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
83 lines (66 loc) · 3.82 KB
/
AndroidManifest.xml
File metadata and controls
83 lines (66 loc) · 3.82 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
78
79
80
81
82
83
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.androidsx.microrss"
android:versionName="1.1.0" android:versionCode="13">
<uses-sdk android:minSdkVersion="7" />
<!-- Permissions -->
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="com.wimm.permission.NETWORK" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<!-- Protect WRITE in the content provider, only us -->
<permission android:name="com.androidsx.microrss.permission.WRITE" android:protectionLevel="signature" />
<uses-permission android:name="com.androidsx.microrss.permission.WRITE" />
<!-- This is useful to be commented in order to test on the mobile phone
<uses-library android:name="com.wimm.framework" android:required="true"></uses-library>
-->
<application android:icon="@drawable/app_icon" android:label="@string/app_name" android:description="@string/app_descrip" android:debuggable="true">
<!-- Content provider for the data in the DB -->
<provider android:name=".provider.NewsProvider" android:authorities="com.androidsx.microrss.provider.NewsProvider"
android:writePermission="com.androidsx.microrss.permission.WRITE" />
<!-- Service for the periodic synchronization of the data with the internet sources -->
<service android:name="com.androidsx.microrss.UpdateService" />
<!-- Service for the google reader synchronization -->
<service android:name="com.androidsx.microrss.GoogleReaderSyncService" />
<!-- Activity that shows the basic information of a feed -->
<activity android:name=".view.FeedActivity" android:theme="@style/Theme.MicroRss" android:noHistory="false"
android:launchMode="singleTask" >
<meta-data android:name="com.wimm.app.peekview" android:resource="@layout/peekview" />
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Activity that shows the basic information of a story -->
<activity android:name=".view.StoryActivity" android:theme="@style/Theme.MicroRss" android:noHistory="true"/>
<!-- @Deprecated: activity for settings -->
<activity
android:name="com.androidsx.microrss.configure.SettingsActivity"
android:label="@string/settings_title">
</activity>
<activity
android:name="com.androidsx.microrss.configure.Preferences"
android:label="@string/settings_title" android:theme="@style/Theme.MicroRss.Light"
android:noHistory="true">
</activity>
<activity
android:name="com.androidsx.microrss.configure.GReaderPreferences"
android:label="@string/settings_title" android:theme="@style/Theme.MicroRss.Light"
android:noHistory="true">
</activity>
<activity
android:name="com.androidsx.microrss.configure.ChooseSampleFeedsActivity"
android:label="@string/settings_title" android:theme="@style/Theme.MicroRss.Light"
android:noHistory="true">
</activity>
<activity
android:name="com.androidsx.microrss.configure.ChooseGoogleReaderFeedsActivity"
android:label="@string/settings_title" android:theme="@style/Theme.MicroRss.Light"
android:noHistory="true">
</activity>
<receiver android:name="com.androidsx.microrss.sync.NetworkAvailableReceiver">
<intent-filter>
<action android:name="com.wimm.action.NETWORK_AVAILABLE"></action>
</intent-filter>
</receiver>
</application>
</manifest>