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

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

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.browser.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_BROWSER_TARGET_PACKAGE_NAME@.permissions.BROWSER_PROVIDER"/>
michael@0 13 <uses-permission android:name="@ANDROID_BROWSER_TARGET_PACKAGE_NAME@.permissions.FORMHISTORY_PROVIDER"/>
michael@0 14 <uses-permission android:name="@ANDROID_BROWSER_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_BROWSER_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="org.mozilla.gecko.browser.harness.BrowserInstrumentationTestRunner"
michael@0 26 android:targetPackage="@ANDROID_BROWSER_TARGET_PACKAGE_NAME@" />
michael@0 27 </manifest>

mercurial