Skip to content

Commit

Permalink
Remove unnecessary directBootAware overloading
Browse files Browse the repository at this point in the history
  • Loading branch information
Mygod committed Jun 11, 2020
1 parent 400e156 commit 0ed2c49
Showing 1 changed file with 11 additions and 33 deletions.
44 changes: 11 additions & 33 deletions core/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -108,52 +108,30 @@
tools:node="remove"/>
<service android:name="androidx.work.impl.background.systemalarm.SystemAlarmService"
android:process=":bg"
android:directBootAware="true"
tools:ignore="Instantiatable"
tools:replace="android:directBootAware"/>
tools:ignore="Instantiatable"/>
<service android:name="androidx.work.impl.background.systemjob.SystemJobService"
android:process=":bg"
android:directBootAware="true"
tools:replace="android:directBootAware"/>
android:process=":bg"/>
<service android:name="androidx.work.impl.foreground.SystemForegroundService"
android:process=":bg"
android:directBootAware="true"
tools:ignore="Instantiatable"
tools:replace="android:directBootAware"/>
tools:ignore="Instantiatable"/>
<receiver android:name="androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver"
android:process=":bg"
android:directBootAware="true"
tools:replace="android:directBootAware"/>
android:process=":bg"/>
<receiver android:name="androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy"
android:process=":bg"
android:directBootAware="true"
tools:replace="android:directBootAware"/>
android:process=":bg"/>
<receiver android:name="androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy"
android:process=":bg"
android:directBootAware="true"
tools:replace="android:directBootAware"/>
android:process=":bg"/>
<receiver android:name="androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy"
android:process=":bg"
android:directBootAware="true"
tools:replace="android:directBootAware"/>
android:process=":bg"/>
<receiver android:name="androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy"
android:process=":bg"
android:directBootAware="true"
tools:replace="android:directBootAware"/>
android:process=":bg"/>
<receiver android:name="androidx.work.impl.background.systemalarm.RescheduleReceiver"
android:process=":bg"
android:directBootAware="true"
tools:replace="android:directBootAware"/>
android:process=":bg"/>
<receiver android:name="androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver"
android:process=":bg"
android:directBootAware="true"
tools:replace="android:directBootAware"/>
android:process=":bg"/>

<!-- Used for API < 23. https://android.googlesource.com/platform/frameworks/support/+/androidx-master-dev/work/workmanager-gcm/src/main/AndroidManifest.xml -->
<service android:name="androidx.work.impl.background.gcm.WorkManagerGcmService"
android:process=":bg"
android:directBootAware="true"
tools:ignore="Instantiatable"
tools:replace="android:directBootAware"/>
tools:ignore="Instantiatable"/>
</application>
</manifest>

0 comments on commit 0ed2c49

Please sign in to comment.