1<?xml version="1.0" encoding="utf-8"?> 2 3<manifest xmlns:android="http://schemas.android.com/apk/res/android" 4 package="com.android.tests.servicecrashtest"> 5 6 <application android:label="Service Crash Test"> 7 <uses-library android:name="android.test.runner"/> 8 9 <service android:name=".CrashingService" 10 android:process=":badservice"/> 11 12 <activity android:name=".MainActivity" 13 android:exported="true"> 14 <intent-filter> 15 <action android:name="android.intent.action.MAIN"/> 16 </intent-filter> 17 </activity> 18 </application> 19 20 <instrumentation android:label="Test bound service crash restart" 21 android:name="android.test.InstrumentationTestRunner" 22 android:targetPackage="com.android.tests.servicecrashtest"/> 23 24</manifest> 25