diff options
-rw-r--r-- | AndroidManifest.xml | 3 | ||||
-rw-r--r-- | AndroidManifestBase.xml | 4 | ||||
-rw-r--r-- | AndroidManifest_InProcess.xml | 4 |
3 files changed, 7 insertions, 4 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 4c44484..6166c66 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -49,5 +49,8 @@ <action android:name="android.net.INetworkStackConnector"/> </intent-filter> </service> + <service android:name="com.android.server.connectivity.ipmemorystore.RegularMaintenanceJobService" + android:permission="android.permission.BIND_JOB_SERVICE" > + </service> </application> </manifest> diff --git a/AndroidManifestBase.xml b/AndroidManifestBase.xml index d00a551..69a4da4 100644 --- a/AndroidManifestBase.xml +++ b/AndroidManifestBase.xml @@ -25,9 +25,5 @@ android:defaultToDeviceProtectedStorage="true" android:directBootAware="true" android:usesCleartextTraffic="true"> - - <service android:name="com.android.server.connectivity.ipmemorystore.RegularMaintenanceJobService" - android:permission="android.permission.BIND_JOB_SERVICE" > - </service> </application> </manifest> diff --git a/AndroidManifest_InProcess.xml b/AndroidManifest_InProcess.xml index 275cd02..2778a2a 100644 --- a/AndroidManifest_InProcess.xml +++ b/AndroidManifest_InProcess.xml @@ -27,5 +27,9 @@ <action android:name="android.net.INetworkStackConnector.InProcess"/> </intent-filter> </service> + <service android:name="com.android.server.connectivity.ipmemorystore.RegularMaintenanceJobService" + android:process="system" + android:permission="android.permission.BIND_JOB_SERVICE" > + </service> </application> </manifest> |