mirror of
https://github.com/chararomandroid/android_device_samsung_a20
synced 2026-08-21 11:55:31 -04:00
Signed-off-by: SamarV-121 <samarvispute121@pm.me> Change-Id: I669fcd7d1e8ace82e6005df41e8c7c63ee26f248 Signed-off-by: roynatech2544 <whiteshell2544@naver.com>
23 lines
854 B
XML
23 lines
854 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.lineageos.dap"
|
|
android:versionCode="1"
|
|
android:versionName="1.0"
|
|
android:sharedUserId="android.uid.system">
|
|
|
|
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
|
|
|
<application
|
|
android:label="SamsungDAP"
|
|
android:persistent="true"
|
|
android:defaultToDeviceProtectedStorage="true"
|
|
android:directBootAware="true">
|
|
|
|
<receiver android:name="org.lineageos.dap.BootCompletedReceiver">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
</application>
|
|
</manifest>
|