37 lines
1.6 KiB
XML
37 lines
1.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2021 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="android.os.cts.process.helper"
|
|
android:sharedUserId="android.os.cts.process.helper.shared">
|
|
|
|
<application android:process="android.os.cts.process.helper.shared_process"
|
|
android:name=".Application1" >
|
|
<processes>
|
|
<process android:process="android.os.cts.process.helper.shared_process" />
|
|
<process android:process=":sub1"/>
|
|
<process android:process=":sub2" android:name=".Application2" />
|
|
<process android:process="android.os.cts.process.helper.shared.sub3" android:name=".Application3b" />
|
|
</processes>
|
|
<receiver android:name=".MyReceiver3"
|
|
android:exported="true"
|
|
android:process="android.os.cts.process.helper.shared.sub3">
|
|
<intent-filter>
|
|
<action android:name="ACTION_SEND_BACK_START_TIME" />
|
|
</intent-filter>
|
|
</receiver>
|
|
</application>
|
|
</manifest> |