mirror of
https://github.com/team-infusion-developers/android_hardware_samsung.git
synced 2024-10-31 23:37:35 +00:00
c8752ed568
Maybe it is just a leftover, but these permissions are certainly not needed for the current doze implementation. Change-Id: I9bc83eee591e0a8c258a5fa8b8443652729aeaa4
43 lines
1.5 KiB
XML
43 lines
1.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.lineageos.settings.doze"
|
|
android:versionCode="1"
|
|
android:versionName="1.0"
|
|
android:sharedUserId="android.uid.system">
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>
|
|
<uses-permission android:name="android.permission.WAKE_LOCK" />
|
|
|
|
<protected-broadcast android:name="com.android.systemui.doze.pulse" />
|
|
|
|
<uses-sdk
|
|
android:minSdkVersion="24"
|
|
android:targetSdkVersion="26"/>
|
|
|
|
<application
|
|
android:label="@string/device_settings_app_name"
|
|
android:persistent="true">
|
|
|
|
<receiver android:name=".BootCompletedReceiver">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<service android:name=".SamsungDozeService"
|
|
android:permission="SamsungDozeService">
|
|
</service>
|
|
|
|
<activity
|
|
android:name=".SamsungDozeActivity"
|
|
android:label="@string/ambient_display_title"
|
|
android:theme="@style/Theme.Main">
|
|
<intent-filter>
|
|
<action android:name="org.lineageos.settings.device.DOZE_SETTINGS" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
</application>
|
|
</manifest>
|