65 lines
3.2 KiB
65 lines
3.2 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2015 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.cts.useprocess">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<application>
|
|
<processes>
|
|
<process />
|
|
<deny-permission android:name="android.permission.INTERNET" />
|
|
<process android:process=":withoutnet1" />
|
|
<process android:process="com.android.cts.useprocess.withnet1">
|
|
<allow-permission android:name="android.permission.INTERNET" />
|
|
</process>
|
|
<allow-permission android:name="android.permission.INTERNET" />
|
|
<process android:process=":withoutnet2">
|
|
<deny-permission android:name="android.permission.INTERNET" />
|
|
</process>
|
|
<process android:process="com.android.cts.useprocess.withnet2" />
|
|
</processes>
|
|
|
|
<activity android:name=".ActivityWithNetwork1" android:exported="true" />
|
|
<activity android:name=".ActivityWithoutNetwork1" android:exported="true"
|
|
android:process=":withoutnet1" />
|
|
<activity android:name=".ActivityWithNetwork2" android:exported="true"
|
|
android:process="com.android.cts.useprocess.withnet1" />
|
|
<service android:name=".ServiceWithNetwork1" />
|
|
<service android:name=".ServiceWithNetwork2"
|
|
android:process="com.android.cts.useprocess.withnet1" />
|
|
<service android:name=".ServiceWithNetwork3"
|
|
android:process="com.android.cts.useprocess.withnet2" />
|
|
<service android:name=".ServiceWithoutNetwork1" android:process=":withoutnet1" />
|
|
<service android:name=".ServiceWithoutNetwork2" android:process=":withoutnet2" />
|
|
<receiver android:name=".DummyReceiver1" />
|
|
<receiver android:name=".DummyReceiver2" android:process=":withoutnet2" />
|
|
<receiver android:name=".DummyReceiver3"
|
|
android:process="com.android.cts.useprocess.withnet2" />
|
|
<provider android:name=".ProviderWithNetwork1"
|
|
android:authorities="com.android.cts.useprocess.auth1"/>
|
|
<provider android:name=".ProviderWithoutNetwork1" android:process=":withoutnet1"
|
|
android:authorities="com.android.cts.useprocess.auth2"/>
|
|
<provider android:name=".ProviderWithNetwork2"
|
|
android:process="com.android.cts.useprocess.withnet2"
|
|
android:authorities="com.android.cts.useprocess.auth3"/>
|
|
</application>
|
|
|
|
<instrumentation android:targetPackage="com.android.cts.useprocess"
|
|
android:name="androidx.test.runner.AndroidJUnitRunner"/>
|
|
</manifest>
|