1<?xml version="1.0" encoding="utf-8"?>
2<manifest
3    xmlns:android="http://schemas.android.com/apk/res/android"
4    package="adb.test.app1"
5    android:sharedUserId="adb.shared.process">
6    <uses-sdk android:minSdkVersion="28"/>
7    <application
8        android:label="Adb Test 1"
9        android:debuggable="true"
10        android:process="adb.test.process.name">
11        <activity
12            android:name="MainActivity"
13            android:exported="true">
14            <intent-filter>
15                <action android:name="android.intent.action.MAIN" />
16                <category android:name="android.intent.category.LAUNCHER" />
17            </intent-filter>
18        </activity>
19         <activity
20            android:name="OwnProcessActivity"
21            android:exported="true"
22            android:process="adb.test.own.process"
23            >
24            <intent-filter>
25                 <action android:name="android.intent.action.VIEW" />
26            </intent-filter>
27        </activity>
28    </application>
29</manifest>
30