1<?xml version="1.0" encoding="utf-8"?>
2<manifest
3    xmlns:android="http://schemas.android.com/apk/res/android"
4    package="adb.test.app2"
5    android:sharedUserId="adb.shared.process">
6    <uses-sdk android:minSdkVersion="28"/>
7    <application
8        android:label="Adb Test 2"
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    </application>
20</manifest>
21