<?xml version="1.0" encoding="utf-8"?>
<manifest
    xmlns:android="http://schemas.android.com/apk/res/android"
    package="adb.test.app1"
    android:sharedUserId="adb.shared.process">
    <uses-sdk android:minSdkVersion="28"/>
    <application
        android:label="Adb Test 1"
        android:debuggable="true"
        android:process="adb.test.process.name">
        <activity
            android:name="MainActivity"
            android:exported="true">
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
         <activity
            android:name="OwnProcessActivity"
            android:exported="true"
            android:process="adb.test.own.process"
            >
            <intent-filter>
                 <action android:name="android.intent.action.VIEW" />
            </intent-filter>
        </activity>
    </application>
</manifest>
