mobile/android/tests/background/junit3/AndroidManifest.xml.in

Wed, 31 Dec 2014 07:22:50 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 07:22:50 +0100
branch
TOR_BUG_3246
changeset 4
fc2d59ddac77
permissions
-rw-r--r--

Correct previous dual key logic pending first delivery installment.

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

mercurial