-
Notifications
You must be signed in to change notification settings - Fork 53
/
AndroidManifest.xml
101 lines (87 loc) · 4.01 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.mohammadag.colouredstatusbar"
android:versionCode="15"
android:versionName="1.8.9.5" >
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-sdk
android:minSdkVersion="15"
android:targetSdkVersion="19" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.mohammadag.colouredstatusbar.activities.PackageListActivity"
android:configChanges="orientation|screenSize"
android:label="@string/per_app_tints_title" >
<intent-filter>
<action android:name="com.mohammadag.colouredstatusbar.PER_APP_SETTINGS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name="com.mohammadag.colouredstatusbar.activities.SettingsActivity"
android:label="@string/app_name" />
<activity-alias
android:name=".MainActivity"
android:targetActivity="com.mohammadag.colouredstatusbar.activities.SettingsActivity" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity-alias>
<activity
android:name="com.mohammadag.colouredstatusbar.activities.ContributorsActivity"
android:label="@string/contributors" >
<intent-filter>
<action android:name="com.mohammadag.colouredstatusbar.SHOW_CONTRIBUTORS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<meta-data
android:name="xposedmodule"
android:value="true" />
<meta-data
android:name="xposedminversion"
android:value="54+" />
<meta-data
android:name="xposeddescription"
android:value="Tint the status bar based on current activity" />
<activity
android:name="com.mohammadag.colouredstatusbar.activities.ApplicationSettings"
android:label="@string/title_activity_applications_settings" >
</activity>
<activity android:name="com.mohammadag.colouredstatusbar.activities.ColorPickerActivity" >
</activity>
<activity
android:name="com.mohammadag.colouredstatusbar.activities.ScreenColorPickerActivity"
android:exported="true"
android:launchMode="singleInstance" >
</activity>
<activity
android:name="com.mohammadag.colouredstatusbar.activities.ActivitesListActivity"
android:configChanges="orientation|screenSize" >
</activity>
<activity
android:name="com.mohammadag.colouredstatusbar.activities.PluginDownloaderActivity"
android:label="@string/title_activity_plugins" >
<intent-filter>
<action android:name="com.mohammadag.colouredstatusbar.DOWNLOAD_PLUGINS" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<receiver
android:name="com.mohammadag.colouredstatusbar.PackageChangedReceiver"
android:exported="false" >
<intent-filter>
<action android:name="android.intent.action.PACKAGE_ADDED" />
<action android:name="android.intent.action.PACKAGE_CHANGED" />
<action android:name="android.intent.action.PACKAGE_REMOVED" />
<data android:scheme="package" />
</intent-filter>
</receiver>
</application>
</manifest>