forked from tunitowen/DevDrawer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
AndroidManifest.xml
executable file
·81 lines (71 loc) · 3.71 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.owentech.DevDrawer"
android:versionCode="13"
android:versionName="1.5">
<uses-sdk android:minSdkVersion="7" android:targetSdkVersion="17"/>
<uses-permission android:name="android.permission.BIND_REMOTEVIEWS"/>
<uses-permission android:name="android.permission.ACCESS_SUPERUSER"/>
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
<uses-permission android:name="android.permission.CHANGE_CONFIGURATION"/>
<application android:label="@string/app_name" android:icon="@drawable/ic_launcher"
android:theme="@android:style/Theme.Holo.Light.DarkActionBar"
>
<activity android:name=".activities.MainActivity"
android:label="@string/app_name"
>
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE"/>
</intent-filter>
</activity>
<activity android:name=".activities.ClickHandlingActivity"
android:label="@string/app_name"
android:theme="@android:style/Theme.Holo.Light.Dialog"
android:exported="true"
android:noHistory="true"
android:excludeFromRecents="true"
android:taskAffinity="">
<intent-filter>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>
<activity android:name=".activities.EditDialog" android:theme='@android:style/Theme.Holo.Light.Dialog.NoActionBar'/>
<activity android:name=".activities.PrefActivity"/>
<activity android:name=".activities.ChooseActivityDialog" android:theme="@android:style/Theme.Holo.Dialog.NoActionBar"/>
<activity android:name=".activities.LegacyDialog"
android:theme="@android:style/Theme.Dialog"
android:exported="true"
android:noHistory="true"
android:excludeFromRecents="true"
android:taskAffinity=""/>
<activity android:name=".activities.LocaleSwitcher"/>
<receiver android:name=".receivers.AppInstalledReceiver">
<intent-filter>
<action android:name="android.intent.action.PACKAGE_INSTALL"/>
<action android:name="android.intent.action.PACKAGE_ADDED"/>
<data android:scheme="package"/>
</intent-filter>
</receiver>
<receiver android:name=".receivers.AppUninstalledReceiver">
<intent-filter>
<action android:name="android.intent.action.PACKAGE_REMOVED"/>
<data android:scheme="package"/>
</intent-filter>
</receiver>
<!--<service android:name=".UpdateWidgetService"></service>-->
<receiver android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:name=".appwidget.DDWidgetProvider"
android:enabled="@bool/widgetEnabled">
<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>
<service android:name=".appwidget.DDWidgetService"
android:permission="android.permission.BIND_REMOTEVIEWS"/>
</application>
</manifest>