-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAndroidManifest.xml
63 lines (50 loc) · 2.23 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.iconpack"
android:installLocation="internalOnly"
android:versionCode="1"
android:versionName="1.0.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="19" />
<supports-screens
android:anyDensity="true"
android:largeScreens="true"
android:normalScreens="true"
android:resizeable="true"
android:smallScreens="true"
android:xlargeScreens="true" />
<application
android:allowBackup="true"
android:icon="@drawable/theme_icon"
android:label="@string/theme_title" >
<activity
android:name="org.signalv.iconpack.MActivity"
android:label="@string/theme_title" >
<intent-filter>
<!-- ADW | /res/xml/appfilter.xml (automatic) -->
<action android:name="org.adw.launcher.THEMES" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<!-- ADW | /res/values/iconpack.xml (picker) -->
<action android:name="org.adw.launcher.icons.ACTION_PICK_ICON" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<!-- Apex | /res/xml/appfilter.xml (automatic) | /res/values/iconpack.xml (picker) -->
<action android:name="android.intent.action.MAIN" />
<category android:name="com.anddoes.launcher.THEME" />
</intent-filter>
<intent-filter>
<!-- GO Launcher | /res/xml/appfilter.xml (automatic) | /res/xml/drawable.xml (picker) -->
<action android:name="com.gau.go.launcherex.theme" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<!-- Nova | /res/xml/appfilter.xml (automatic) | /res/xml/drawable.xml (picker) -->
<action android:name="com.novalauncher.THEME" />
</intent-filter>
</activity>
</application>
</manifest>