-
Notifications
You must be signed in to change notification settings - Fork 3
/
AndroidManifest.xml
88 lines (84 loc) · 3.05 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
<?xml version="1.0" encoding="utf-8"?>
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="xeed.xposed.cbppmod"
android:installLocation="internalOnly"
android:versionCode="58"
android:versionName="4.0 beta6"
>
<uses-sdk
android:minSdkVersion="10"
android:targetSdkVersion="23"
/>
<uses-permission android:name="com.android.vending.BILLING" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-permission android:name="android.permission.FLASHLIGHT" />
<uses-feature android:name="android.hardware.camera.flash" android:required="false" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:restoreAnyVersion="true"
>
<meta-data
android:name="xposedmodule"
android:value="true"
/>
<meta-data
android:name="xposedminversion"
android:value="54"
/>
<meta-data
android:name="xposeddescription"
android:value="Use the physical buttons to control music without turning on the screen!"
/>
<activity
android:name=".PBMain"
android:description="@string/app_desc"
android:icon="@drawable/ic_launcher"
android:label="@string/title_pbmain"
android:stateNotNeeded="true"
android:theme="@style/Theme.AppCompat"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="de.robv.android.xposed.category.MODULE_SETTINGS" />
</intent-filter>
</activity>
<activity
android:name=".PBSettings"
android:description="@string/app_desc"
android:icon="@drawable/ic_launcher"
android:label="@string/title_pbsettings"
android:stateNotNeeded="true"
android:theme="@style/Theme.AppCompat"
>
<meta-data
android:name="android.support.PARENT_ACTIVITY"
android:value=".PBSettings"
/>
</activity>
<activity-alias
android:targetActivity=".PBMain"
android:name=".Launcher"
android:label="@string/title_pbmain"
android:description="@string/app_desc"
android:icon="@drawable/ic_launcher"
android:enabled="true"
>
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity-alias>
<service
android:name=".Coded$LightService"
tools:ignore="ExportedService"
>
<intent-filter>
<action android:name="xeed.xposed.cbppmod.TOGGLE_LIGHT" />
</intent-filter>
</service>
</application>
</manifest>