trustedintents / test / AndroidManifest.xml @ 8c9c9a54
History | View | Annotate | Download (638 Bytes)
1 |
<?xml version="1.0" encoding="utf-8"?>
|
---|---|
2 |
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
3 |
package="info.guardianproject.trustedintents.test" |
4 |
android:versionCode="1" |
5 |
android:versionName="1.0" > |
6 |
|
7 |
<uses-sdk android:minSdkVersion="7" /> |
8 |
|
9 |
<instrumentation
|
10 |
android:name="com.zutubi.android.junitreport.JUnitReportTestRunner" |
11 |
android:targetPackage="info.guardianproject.trustedintents.test" /> |
12 |
|
13 |
<application
|
14 |
android:icon="@drawable/ic_launcher" |
15 |
android:label="@string/app_name" > |
16 |
<uses-library android:name="android.test.runner" /> |
17 |
</application>
|
18 |
|
19 |
</manifest>
|