mirror of
https://github.com/chararomandroid/android_device_samsung_a20
synced 2026-08-22 12:05:32 -04:00
universal7885: parts: Refactor
* Convert null properties to lateinit * Implement apply on boot again * Cleanup unused file
This commit is contained in:
parent
cae95b3c27
commit
4a9ca4730c
15 changed files with 137 additions and 111 deletions
|
|
@ -3,7 +3,7 @@
|
|||
package="com.eurekateam.samsungextras"
|
||||
android:sharedUserId="android.uid.system">
|
||||
|
||||
<uses-permission android:name="android.permission.EXPAND_STATUS_BAR" />
|
||||
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
|
||||
<uses-permission android:name="android.permission.ACCESS_SURFACE_FLINGER"/>
|
||||
|
||||
<protected-broadcast android:name="com.android.systemui.doze.pulse" />
|
||||
|
|
@ -12,6 +12,13 @@
|
|||
android:supportsRtl="true"
|
||||
android:theme="@style/Theme.SubSettingsBase"
|
||||
android:fullBackupOnly="true">
|
||||
<receiver android:name=".BootReceiver"
|
||||
android:exported="true">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
</intent-filter>
|
||||
</receiver>
|
||||
<activity
|
||||
android:name=".DeviceSettingsActivity"
|
||||
android:exported="true"
|
||||
|
|
|
|||
Loading…
Reference in a new issue