-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
executable file
·194 lines (181 loc) · 8.9 KB
/
AndroidManifest.xml
File metadata and controls
executable file
·194 lines (181 loc) · 8.9 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<?xml version="1.0" encoding="utf-8"?>
<!--
** Copyright 2013, the1dynasty
**
** Licensed under the Apache License, Version 2.0 (the "License");
** you may not use this file except in compliance with the License.
** You may obtain a copy of the License at
**
** http://www.apache.org/licenses/LICENSE-2.0
**
** Unless required by applicable law or agreed to in writing, software
** distributed under the License is distributed on an "AS IS" BASIS,
** WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
** See the License for the specific language governing permissions and
** limitations under the License.
-->
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.infamous.cm.icons"
android:versionCode="301"
android:versionName="3.0.1"
android:installLocation="auto">
<!-- android:installLocation is set to "auto"
change to "internalOnly" if you want it installed to the internal memory -->
<!-- Permission required for setting the wallpaper -->
<uses-permission android:name="android.permission.SET_WALLPAPER" />
<uses-permission android:name="android.permission.SET_WALLPAPER_HINTS" />
<!-- This lets this code work on any screen size -->
<supports-screens
android:anyDensity="true"
android:smallScreens="true"
android:normalScreens="true"
android:largeScreens="true"
android:xlargeScreens="true"
android:resizeable="true" />
<!-- minSDK set to run on Android 2.3 and newer
targetSDK set to run on latest version. This ensures
the latest graphics are used on newer devices -->
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="19"/>
<!-- Change the style to something else if you want a different look
Please refer to ABS Styles for choosing a style you want -->
<application
android:allowBackup="true"
android:label="@string/app_name"
android:icon="@drawable/icon"
android:theme="@style/AppTheme_Dark"
android:largeHeap="true" >
<!-- Use AppTheme_Dark for the dark version of some windows -->
<!-- Main Activity that launches when you open the app from the drawer -->
<activity
android:name="com.infamous.cm.icons.activity.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<!-- Various Activities inside the app -->
<activity
android:name="com.infamous.cm.icons.activity.AboutThemeActivity"
android:label="@string/about_theme"
android:screenOrientation="portrait" >
</activity>
<activity
android:name="com.infamous.cm.icons.activity.AboutDev"
android:theme="@style/Theme.Sherlock.Light.Dialog" >
</activity>
<activity
android:name="com.infamous.cm.icons.activity.RequestActivity"
android:icon="@drawable/icon_request"
android:label="@string/app_name" >
</activity>
<activity
android:name="com.infamous.cm.icons.activity.AllIcons"
android:label="@string/title_all_icons" >
</activity>
<!-- This is the Activity Dialog that pops up when selecting to apply your Icon Pack
Remove android:theme line if you want it to open as its own Activity and NOT a popup -->
<activity
android:name="com.infamous.cm.icons.activity.ApplyLauncherMain"
android:label="@string/launcher_title"
android:theme="@style/Theme.Sherlock.Light.Dialog" >
</activity>
<activity
android:name="com.infamous.cm.icons.activity.Wallpaper"
android:label="@string/app_name"
android:icon="@drawable/icon_wall"
android:finishOnCloseSystemDialogs="true">
<intent-filter>
<!--
** The commented out line below determines if the Icon Pack shows up as an
** icon in the launchers wallpaper picker. Remove the commented parts at the beginning
** and end to enable it. Note: If you're using Apex, you will still see the list
** of wallpapers by selecting Apex Wallpapers
-->
<!-- <action android:name="android.intent.action.SET_WALLPAPER" /> -->
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="com.infamous.cm.icons.activity.Docks"
android:label="@string/app_name"
android:icon="@drawable/icon">
<intent-filter>
<action android:name="android.intent.action.PICK" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
</activity>
<!-- This is where the magic happens for the Icon Picker and allowing the packs to show up -->
<activity
android:name="com.infamous.cm.icons.activity.Icons"
android:label="@string/app_name">
<intent-filter>
<action android:name="org.adw.launcher.THEMES" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="org.adw.launcher.icons.ACTION_PICK_ICON" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.anddoes.launcher.THEME" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.teslacoilsw.launcher.THEME" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="com.fede.launcher.THEME_ICONPACK" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="com.tsf.shell.themes" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="ginlemon.smartlauncher.THEMES" />
<action android:name="ginlemon.smartlauncher.BUBBLESTYLE" />
<action android:name="ginlemon.smartlauncher.BUBBLEICONS" />
<action android:name="ginlemon.smartlauncher.CLOCKS" />
<action android:name="ginlemon.smartlauncher.CLOCKFONTS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<action android:name="org.adw.launcher.THEMES" />
<action android:name="mobi.bbase.ahome.THEME" />
<action android:name="com.rogro.GDE.THEME.1" />
<action android:name="com.android.dxtop.launcher.THEME" />
<category android:name="com.fede.launcher.THEME_ICONPACK" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="org.adw.launcher.icons.ACTION_PICK_ICON" />
<action android:name="mobi.bbase.ahome.THEME" />
<action android:name="com.rogro.GDE.THEME.1" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="cdproductions.crazyicons.TWO" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
<intent-filter>
<action android:name="com.daeva112.manager.MAIN" />
<category android:name="com.daeva112.manager.THEME" />
</intent-filter>
<intent-filter>
<action android:name="com.gau.go.launcherex.theme" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<!-- android:authorities NEEDS to be changed manually for each new pack
Failure to change name, will result in installation errors -->
<provider
android:name="com.infamous.cm.icons.activity.DocksProvider"
android:authorities="com.infamous.cm.icons.here.DocksProvider" />
</application>
</manifest>