Amith Yamasani | b0c8a88 | 2017-08-28 09:36:42 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | |
| 3 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 4 | package="com.android.tests.servicecrashtest"> |
Amith Yamasani | b0c8a88 | 2017-08-28 09:36:42 -0700 | [diff] [blame] | 5 | |
| 6 | <application android:label="Service Crash Test"> |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 7 | <uses-library android:name="android.test.runner"/> |
Amith Yamasani | b0c8a88 | 2017-08-28 09:36:42 -0700 | [diff] [blame] | 8 | |
| 9 | <service android:name=".CrashingService" |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 10 | android:process=":badservice"/> |
Amith Yamasani | b0c8a88 | 2017-08-28 09:36:42 -0700 | [diff] [blame] | 11 | |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 12 | <activity android:name=".MainActivity" |
| 13 | android:exported="true"> |
Amith Yamasani | b0c8a88 | 2017-08-28 09:36:42 -0700 | [diff] [blame] | 14 | <intent-filter> |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 15 | <action android:name="android.intent.action.MAIN"/> |
Amith Yamasani | b0c8a88 | 2017-08-28 09:36:42 -0700 | [diff] [blame] | 16 | </intent-filter> |
| 17 | </activity> |
| 18 | </application> |
| 19 | |
| 20 | <instrumentation android:label="Test bound service crash restart" |
Ashwini Oruganti | e178c24 | 2020-03-18 15:46:39 -0700 | [diff] [blame] | 21 | android:name="android.test.InstrumentationTestRunner" |
| 22 | android:targetPackage="com.android.tests.servicecrashtest"/> |
Amith Yamasani | b0c8a88 | 2017-08-28 09:36:42 -0700 | [diff] [blame] | 23 | |
| 24 | </manifest> |