-
Notifications
You must be signed in to change notification settings - Fork 8
/
AndroidManifest.xml
101 lines (84 loc) · 3.83 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.google.code.appsorganizer" android:versionCode="200"
android:versionName="1.6.0">
<application android:icon="@drawable/icon" android:label="@string/app_name"
android:name="AppsOrganizerApplication">
<activity android:name=".SplashScreenActivity" android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".LabelListActivity"></activity>
<activity android:name=".FileImporter"></activity>
<activity android:name=".chooseicon.ChooseIconActivity"></activity>
<activity android:name=".chooseicon.ChooseIconFromPackActivity"></activity>
<activity android:name=".chooseicon.IconPackActivity"></activity>
<activity android:name=".shortcut.LabelShortcut"
android:label="@string/Apps_organizer_label" android:theme="@android:style/Theme.Dialog"
android:taskAffinity="com.google.code.appsorganizer.shortcuts">
<intent-filter>
<action android:name="com.google.code.appsorganizer.ShortcutAction" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".shortcut.ShortcutCreator"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.CREATE_SHORTCUT" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<!--
<receiver android:name=".service.StartupListener"
android:enabled="true" android:exported="false" android:label="StartupListener">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<activity android:name=".service.ServiceStarterActivity" android:label="Service started"/>
-->
<receiver android:name="ApplicationChangeReceiver"
android:enabled="true" android:exported="false" android:label="ApplicationChangeReceiver">
<intent-filter>
<action android:name="android.intent.action.PACKAGE_ADDED" />
<action android:name="android.intent.action.PACKAGE_REMOVED" />
<data android:scheme="package"></data>
</intent-filter>
</receiver>
<activity android:name=".preferences.PreferencesFromXml" android:label="@string/Preferences"/>
<activity android:name="BugReportActivity" android:label="@string/Bug_report"/>
<!--
<provider android:name=".MyBackupPro" android:authorities="com.google.code.appsorganizer.MyBackupPro"/>
-->
<receiver android:name=".appwidget.AppsOrganizerAppWidgetProvider">
<meta-data android:name="android.appwidget.provider"
android:resource="@xml/appwidget_provider" />
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
</receiver>
<activity android:name=".appwidget.AppWidgetConfigure">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
<receiver android:name=".MountReceiver">
<intent-filter>
<action android:name="android.intent.action.MEDIA_MOUNTED" />
<data android:scheme="file" />
</intent-filter>
</receiver>
</application>
<uses-sdk android:minSdkVersion="3" />
<!--
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
-->
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
<supports-screens
android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true" />
</manifest>