-
Notifications
You must be signed in to change notification settings - Fork 1
/
AndroidManifest.xml
45 lines (37 loc) · 1.72 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
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.android.touch.gestures"
android:sharedUserId="android.uid.system">
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
<uses-permission android:name="android.permission.WRITE_SETTINGS" />
<uses-permission android:name="android.permission.VIBRATE" />
<permission
android:name="com.android.touch.gestures.TRIGGER_SCREEN_OFF_GESTURE"
android:protectionLevel="signatureOrSystem" />
<protected-broadcast android:name="com.android.touch.gestures.UPDATE_SETTINGS" />
<uses-sdk
android:targetSdkVersion="29"/>
<application
android:label="@string/touchscreen_gesture_settings_title"
android:persistent="true"
android:supportsRtl="true">
<receiver android:name=".BootReceiver" android:enabled="true">
<intent-filter android:priority="999999">
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
</receiver>
<activity
android:name=".TouchscreenGestureSettings"
android:label="@string/touchscreen_gesture_settings_title"
android:theme="@style/Theme.SubSettingsBase">
</activity>
<activity
android:name=".ScreenOffLaunchGestureActivity"
android:permission="com.android.touch.gestures.TRIGGER_SCREEN_OFF_GESTURE"
android:excludeFromRecents="true"
android:exported="true"
android:label="@string/touchscreen_gesture_settings_title"
android:theme="@style/AppTheme.Transparent">
</activity>
</application>
</manifest>