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 <uses-sdk android:minSdkVersion="33" 5 android:targetSdkVersion="33" 6 android:maxSdkVersion="33" /> 7 <application> 8 <service 9 android:name=".MyService" 10 android:enabled="true" 11 android:exported="true" 12 android:process=":service"> 13 </service> 14 </application> 15 16 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" 17 android:targetPackage="com.android.test.binder" 18 android:label="Binder leak test"> 19 </instrumentation> 20</manifest> 21