forked from Grarak/KernelAdiutor
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathAndroidManifest.xml
126 lines (108 loc) · 4.98 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
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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.grarak.kerneladiutor"
android:versionCode="107"
android:versionName="0.9.7">
<uses-permission android:name="android.permission.ACCESS_SUPERUSER" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.WAKE_LOCK" />
<uses-permission android:name="cyanogenmod.permission.PUBLISH_CUSTOM_TILE" />
<uses-feature
android:name="android.software.leanback"
android:required="false" />
<uses-feature
android:name="android.hardware.touchscreen"
android:required="false" />
<uses-feature
android:name="android.hardware.screen.portrait"
android:required="false" />
<application
android:allowBackup="true"
android:banner="@drawable/banner"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppThemeLight">
<activity
android:name=".MainActivity"
android:configChanges="locale|keyboard|keyboardHidden|orientation|screenSize|navigation"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LEANBACK_LAUNCHER" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".TextActivity"
android:configChanges="locale|keyboard|keyboardHidden|orientation|screenSize|navigation"
android:theme="@style/AppThemeActionBarLight" />
<activity
android:name=".KernelActivity"
android:configChanges="locale|keyboard|keyboardHidden|orientation|screenSize|navigation" />
<activity
android:name=".FileBrowserActivity"
android:configChanges="locale|keyboard|keyboardHidden|orientation|screenSize|navigation" />
<activity
android:name=".EditTextActivity"
android:configChanges="locale|keyboard|keyboardHidden|orientation|screenSize|navigation" />
<activity
android:name=".elements.DAdapter$MainHeader$MainHeaderActivity"
android:configChanges="locale|keyboard|keyboardHidden|orientation|screenSize|navigation"
android:theme="@android:style/Theme.Translucent.NoTitleBar" />
<receiver android:name=".services.BootReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<service android:name=".services.BootService" />
<service android:name=".services.InitdService" />
<!-- Profile Widget -->
<receiver android:name=".services.ProfileWidget">
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/profile_widget" />
</receiver>
<service
android:name=".services.ProfileWidget$WidgetService"
android:permission="android.permission.BIND_REMOTEVIEWS" />
<!-- DashClock -->
<service
android:name=".services.DashClockService"
android:icon="@drawable/ic_launcher_preview"
android:permission="com.google.android.apps.dashclock.permission.READ_EXTENSION_DATA">
<intent-filter>
<action android:name="com.google.android.apps.dashclock.Extension" />
</intent-filter>
<meta-data
android:name="protocolVersion"
android:value="1" />
</service>
<!-- Tasker -->
<activity
android:name=".tasker.AddProfileActivity"
android:configChanges="locale|keyboard|keyboardHidden|orientation|screenSize|navigation">
<intent-filter>
<action android:name="com.twofortyfouram.locale.intent.action.EDIT_SETTING" />
</intent-filter>
</activity>
<receiver
android:name=".tasker.RunProfileReceiver"
android:process=":background">
<intent-filter>
<action android:name="com.twofortyfouram.locale.intent.action.FIRE_SETTING" />
</intent-filter>
</receiver>
<!-- CM SDK -->
<receiver android:name=".services.ProfileTileReceiver">
<intent-filter>
<action android:name="com.grarak.kerneladiutor.ACTION_TOGGLE_STATE" />
</intent-filter>
</receiver>
</application>
</manifest>