2020-09-04 23:17:43 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
package="org.lineageos.settings.device"
|
|
|
|
android:sharedUserId="android.uid.system"
|
|
|
|
>
|
|
|
|
|
|
|
|
<original-package android:name="com.cyanogenmod.settings.device" />
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_NOTIFICATION_POLICY" />
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
|
|
|
<uses-permission android:name="android.permission.VIBRATE"/>
|
|
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
|
|
|
|
<protected-broadcast android:name="com.android.systemui.doze.pulse" />
|
|
|
|
|
|
|
|
<application
|
|
|
|
android:allowBackup="true"
|
|
|
|
android:label="@string/device_settings_app_name"
|
|
|
|
android:persistent="true">
|
|
|
|
|
2022-01-29 18:27:21 +01:00
|
|
|
<receiver
|
|
|
|
android:name="org.lineageos.settings.device.BootCompletedReceiver"
|
|
|
|
android:exported="false">
|
2020-09-04 23:17:43 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
</receiver>
|
|
|
|
|
2022-01-29 18:27:21 +01:00
|
|
|
<service
|
|
|
|
android:name="ServiceWrapper"
|
|
|
|
android:permission="ServiceWrapper"
|
|
|
|
android:exported="false">
|
2020-09-04 23:17:43 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="ServiceWrapper"/>
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".DozePreferenceActivity"
|
2022-01-29 18:27:21 +01:00
|
|
|
android:exported="false"
|
2020-09-04 23:17:43 +02:00
|
|
|
android:label="@string/ambient_display_gestures_title"
|
2022-02-01 17:29:29 +08:00
|
|
|
android:theme="@style/Theme.Main">
|
2020-09-04 23:17:43 +02:00
|
|
|
<intent-filter>
|
2022-02-01 23:22:46 +08:00
|
|
|
<action android:name="org.lineageos.settings.device.DOZE_SETTINGS" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2020-09-04 23:17:43 +02:00
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
<activity
|
|
|
|
android:name=".ActionsPreferenceActivity"
|
2022-01-29 18:27:21 +01:00
|
|
|
android:exported="false"
|
2020-09-04 23:17:43 +02:00
|
|
|
android:label="@string/moto_gestures_panel_title"
|
2022-02-01 17:29:29 +08:00
|
|
|
android:theme="@style/Theme.Main">
|
2020-09-04 23:17:43 +02:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.android.settings.action.IA_SETTINGS" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
|
|
android:name="com.android.settings.category"
|
|
|
|
android:value="com.android.settings.category.ia.system" />
|
|
|
|
<meta-data
|
|
|
|
android:name="com.android.settings.icon"
|
|
|
|
android:resource="@drawable/ic_settings_gestures" />
|
|
|
|
<meta-data
|
|
|
|
android:name="com.android.settings.summary"
|
|
|
|
android:resource="@string/screen_gestures_panel_summary" />
|
|
|
|
</activity>
|
|
|
|
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|