1<?xml version="1.0" encoding="utf-8"?> 2<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="com.android.test.binder"> 4 <application> 5 <service 6 android:name=".MyService" 7 android:enabled="true" 8 android:exported="true" 9 android:process=":service"> 10 </service> 11 </application> 12 13 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" 14 android:targetPackage="com.android.test.binder" 15 android:label="Binder leak test"> 16 </instrumentation> 17</manifest> 18