-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroidManifest.xml
84 lines (70 loc) · 3.48 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="internalOnly"
package="com.blazeroni.reddit.widget"
android:versionCode="10"
android:versionName="1.3.1" >
<uses-sdk
android:minSdkVersion="11"
android:targetSdkVersion="17" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<application
android:name="com.blazeroni.reddit.RedditApp"
android:hardwareAccelerated="true"
android:icon="@drawable/ic_launcher"
android:logo="@drawable/logo"
android:label="@string/app_name"
android:theme="@style/Theme.Widget">
<receiver android:name="com.blazeroni.reddit.widget.RedditWidgetProvider" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_info" />
</receiver>
<activity android:name="com.blazeroni.reddit.widget.WidgetConfigurationActivity"
android:configChanges="orientation|screenSize|keyboardHidden"
android:theme="@style/Theme.Widget" >
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
<receiver
android:name="com.blazeroni.reddit.widget.NetworkStateReceiver"
android:enabled="false" />
<receiver android:name="com.blazeroni.reddit.widget.UpgradeReceiver" >
<intent-filter>
<action android:name="android.intent.action.PACKAGE_REPLACED" />
<data android:scheme="package" />
</intent-filter>
</receiver>
<service android:name="com.blazeroni.reddit.widget.WidgetService" />
<service android:name="com.blazeroni.reddit.widget.PostService" />
<service android:name="com.blazeroni.reddit.widget.RefreshService" />
<service android:name="com.blazeroni.reddit.widget.ListService"
android:permission="android.permission.BIND_REMOTEVIEWS" />
<activity
android:name="com.blazeroni.reddit.widget.Forwarder"
android:theme="@android:style/Theme.NoDisplay"
android:allowTaskReparenting="true"
android:taskAffinity=":forwarder"
android:launchMode="singleInstance"
android:excludeFromRecents="true" />
<activity android:name="com.blazeroni.reddit.activity.LoginActivity"
android:configChanges="orientation|screenSize|keyboardHidden" />
<activity android:name="com.blazeroni.reddit.activity.SettingsActivity"
android:configChanges="orientation|screenSize|keyboardHidden" >
</activity>
<activity android:name="com.blazeroni.reddit.activity.Main"
android:clearTaskOnLaunch="true"
android:configChanges="orientation|screenSize|keyboardHidden" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>