Skip to content

Commit 0ed2c49

Browse files
committed
Remove unnecessary directBootAware overloading
1 parent 400e156 commit 0ed2c49

File tree

1 file changed

+11
-33
lines changed

1 file changed

+11
-33
lines changed

core/src/main/AndroidManifest.xml

+11-33
Original file line numberDiff line numberDiff line change
@@ -108,52 +108,30 @@
108108
tools:node="remove"/>
109109
<service android:name="androidx.work.impl.background.systemalarm.SystemAlarmService"
110110
android:process=":bg"
111-
android:directBootAware="true"
112-
tools:ignore="Instantiatable"
113-
tools:replace="android:directBootAware"/>
111+
tools:ignore="Instantiatable"/>
114112
<service android:name="androidx.work.impl.background.systemjob.SystemJobService"
115-
android:process=":bg"
116-
android:directBootAware="true"
117-
tools:replace="android:directBootAware"/>
113+
android:process=":bg"/>
118114
<service android:name="androidx.work.impl.foreground.SystemForegroundService"
119115
android:process=":bg"
120-
android:directBootAware="true"
121-
tools:ignore="Instantiatable"
122-
tools:replace="android:directBootAware"/>
116+
tools:ignore="Instantiatable"/>
123117
<receiver android:name="androidx.work.impl.utils.ForceStopRunnable$BroadcastReceiver"
124-
android:process=":bg"
125-
android:directBootAware="true"
126-
tools:replace="android:directBootAware"/>
118+
android:process=":bg"/>
127119
<receiver android:name="androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryChargingProxy"
128-
android:process=":bg"
129-
android:directBootAware="true"
130-
tools:replace="android:directBootAware"/>
120+
android:process=":bg"/>
131121
<receiver android:name="androidx.work.impl.background.systemalarm.ConstraintProxy$BatteryNotLowProxy"
132-
android:process=":bg"
133-
android:directBootAware="true"
134-
tools:replace="android:directBootAware"/>
122+
android:process=":bg"/>
135123
<receiver android:name="androidx.work.impl.background.systemalarm.ConstraintProxy$StorageNotLowProxy"
136-
android:process=":bg"
137-
android:directBootAware="true"
138-
tools:replace="android:directBootAware"/>
124+
android:process=":bg"/>
139125
<receiver android:name="androidx.work.impl.background.systemalarm.ConstraintProxy$NetworkStateProxy"
140-
android:process=":bg"
141-
android:directBootAware="true"
142-
tools:replace="android:directBootAware"/>
126+
android:process=":bg"/>
143127
<receiver android:name="androidx.work.impl.background.systemalarm.RescheduleReceiver"
144-
android:process=":bg"
145-
android:directBootAware="true"
146-
tools:replace="android:directBootAware"/>
128+
android:process=":bg"/>
147129
<receiver android:name="androidx.work.impl.background.systemalarm.ConstraintProxyUpdateReceiver"
148-
android:process=":bg"
149-
android:directBootAware="true"
150-
tools:replace="android:directBootAware"/>
130+
android:process=":bg"/>
151131

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

0 commit comments

Comments
 (0)