mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-11-23 18:15:30 +00:00
Remove unused WorkManager components
This commit is contained in:
parent
a49002bb2c
commit
1b3a009da7
@ -1,5 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<resources>
|
|
||||||
<bool name="enable_system_alarm_service_default">false</bool>
|
|
||||||
<bool name="enable_system_job_service_default">true</bool>
|
|
||||||
</resources>
|
|
@ -1,5 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<resources>
|
|
||||||
<bool name="enable_system_alarm_service_default">true</bool>
|
|
||||||
<bool name="enable_system_job_service_default">false</bool>
|
|
||||||
</resources>
|
|
@ -85,16 +85,10 @@
|
|||||||
android:multiprocess="true"
|
android:multiprocess="true"
|
||||||
tools:targetApi="n" />
|
tools:targetApi="n" />
|
||||||
|
|
||||||
<service
|
|
||||||
android:name="androidx.work.impl.background.systemalarm.SystemAlarmService"
|
|
||||||
android:directBootAware="false"
|
|
||||||
android:enabled="@bool/enable_system_alarm_service_default"
|
|
||||||
android:exported="false"
|
|
||||||
tools:targetApi="n" />
|
|
||||||
<service
|
<service
|
||||||
android:name="androidx.work.impl.background.systemjob.SystemJobService"
|
android:name="androidx.work.impl.background.systemjob.SystemJobService"
|
||||||
android:directBootAware="false"
|
android:directBootAware="false"
|
||||||
android:enabled="@bool/enable_system_job_service_default"
|
android:enabled="true"
|
||||||
android:exported="true"
|
android:exported="true"
|
||||||
android:permission="android.permission.BIND_JOB_SERVICE"
|
android:permission="android.permission.BIND_JOB_SERVICE"
|
||||||
tools:targetApi="n" />
|
tools:targetApi="n" />
|
||||||
@ -105,71 +99,6 @@
|
|||||||
android:enabled="true"
|
android:enabled="true"
|
||||||
android:exported="false"
|
android:exported="false"
|
||||||
tools:targetApi="n" />
|
tools:targetApi="n" />
|
||||||
<receiver
|
|
||||||
android:name="androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy"
|
|
||||||
android:directBootAware="false"
|
|
||||||
android:enabled="false"
|
|
||||||
android:exported="false"
|
|
||||||
tools:targetApi="n" >
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.intent.action.ACTION_POWER_CONNECTED" />
|
|
||||||
<action android:name="android.intent.action.ACTION_POWER_DISCONNECTED" />
|
|
||||||
</intent-filter>
|
|
||||||
</receiver>
|
|
||||||
<receiver
|
|
||||||
android:name="androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy"
|
|
||||||
android:directBootAware="false"
|
|
||||||
android:enabled="false"
|
|
||||||
android:exported="false"
|
|
||||||
tools:targetApi="n" >
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.intent.action.BATTERY_OKAY" />
|
|
||||||
<action android:name="android.intent.action.BATTERY_LOW" />
|
|
||||||
</intent-filter>
|
|
||||||
</receiver>
|
|
||||||
<receiver
|
|
||||||
android:name="androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy"
|
|
||||||
android:directBootAware="false"
|
|
||||||
android:enabled="false"
|
|
||||||
android:exported="false"
|
|
||||||
tools:targetApi="n" >
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.intent.action.DEVICE_STORAGE_LOW" />
|
|
||||||
<action android:name="android.intent.action.DEVICE_STORAGE_OK" />
|
|
||||||
</intent-filter>
|
|
||||||
</receiver>
|
|
||||||
<receiver
|
|
||||||
android:name="androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy"
|
|
||||||
android:directBootAware="false"
|
|
||||||
android:enabled="false"
|
|
||||||
android:exported="false"
|
|
||||||
tools:targetApi="n" >
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.net.conn.CONNECTIVITY_CHANGE" />
|
|
||||||
</intent-filter>
|
|
||||||
</receiver>
|
|
||||||
<receiver
|
|
||||||
android:name="androidx.work.impl.background.systemalarm.RescheduleReceiver"
|
|
||||||
android:directBootAware="false"
|
|
||||||
android:enabled="false"
|
|
||||||
android:exported="false"
|
|
||||||
tools:targetApi="n" >
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="android.intent.action.BOOT_COMPLETED" />
|
|
||||||
<action android:name="android.intent.action.TIME_SET" />
|
|
||||||
<action android:name="android.intent.action.TIMEZONE_CHANGED" />
|
|
||||||
</intent-filter>
|
|
||||||
</receiver>
|
|
||||||
<receiver
|
|
||||||
android:name="androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver"
|
|
||||||
android:directBootAware="false"
|
|
||||||
android:enabled="@bool/enable_system_alarm_service_default"
|
|
||||||
android:exported="false"
|
|
||||||
tools:targetApi="n" >
|
|
||||||
<intent-filter>
|
|
||||||
<action android:name="androidx.work.impl.background.systemalarm.UpdateProxies" />
|
|
||||||
</intent-filter>
|
|
||||||
</receiver>
|
|
||||||
|
|
||||||
<!-- Room -->
|
<!-- Room -->
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user