blob: 756def7ac29de3f7570b9fbd26504c62b69514d5 [file] [log] [blame]
Jiyong Park646cc262023-09-08 17:17:35 +09001<?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>