Stuart Scott | 296fa26 | 2013-12-02 11:25:07 -0800 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | package="com.android.cts.holo_capture" |
| 4 | android:versionCode="1" |
| 5 | android:versionName="1.0"> |
| 6 | <uses-permission android:name="android.permission.DISABLE_KEYGUARD" /> |
| 7 | <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> |
| 8 | |
| 9 | <instrumentation |
Brett Chabot | a6ea248 | 2014-01-09 14:32:20 -0800 | [diff] [blame] | 10 | android:name="android.support.test.runner.AndroidJUnitRunner" |
Stuart Scott | 296fa26 | 2013-12-02 11:25:07 -0800 | [diff] [blame] | 11 | android:targetPackage="com.android.cts.holo_capture" /> |
| 12 | |
| 13 | <application> |
| 14 | <uses-library android:name="android.test.runner" /> |
| 15 | <activity android:name=".CaptureActivity"> |
| 16 | <intent-filter> |
| 17 | <action android:name="android.intent.action.MAIN" /> |
| 18 | <category android:name="android.intent.category.LAUNCHER"/> |
| 19 | </intent-filter> |
| 20 | </activity> |
| 21 | </application> |
| 22 | </manifest> |