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            <intent-filter>
14                <action android:name="android.intent.action.MAIN" />
15            </intent-filter>
16        </activity>
17    </application>
18
19    <instrumentation android:label="Test bound service crash restart"
20            android:name="android.test.InstrumentationTestRunner"
21            android:targetPackage="com.android.tests.servicecrashtest" />
22
23</manifest>
24