blob: 09f1a25a15ee152a8c9faa5dca750e2d26f34ccf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#filter substitution
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="org.mozilla.gecko.background.tests"
sharedUserId="@MOZ_ANDROID_SHARED_ID@"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8"
android:targetSdkVersion="@ANDROID_TARGET_SDK@" />
<application
android:debuggable="true"
android:icon="@drawable/icon"
android:label="@ANDROID_BACKGROUND_APP_DISPLAYNAME@">
<uses-library android:name="android.test.runner" />
</application>
<instrumentation
android:label="@string/app_name"
android:name="android.test.InstrumentationTestRunner"
android:targetPackage="@ANDROID_BACKGROUND_TARGET_PACKAGE_NAME@" />
</manifest>
|