Merge "Fix null IpmemoryService object in AGO project."

This commit is contained in:
Paul Hu
2019-05-24 08:09:56 +00:00
committed by Gerrit Code Review
3 changed files with 7 additions and 4 deletions

View File

@@ -45,5 +45,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>

View File

@@ -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>

View File

@@ -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>