build/mobile/robocop/AndroidManifest.xml.in

Wed, 31 Dec 2014 06:09:35 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 06:09:35 +0100
changeset 0
6474c204b198
permissions
-rw-r--r--

Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.

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.roboexample.test"
michael@0 5 android:versionCode="1"
michael@0 6 android:versionName="1.0" >
michael@0 7
michael@0 8 <uses-sdk android:minSdkVersion="8" />
michael@0 9
michael@0 10 <instrumentation
michael@0 11 android:name="org.mozilla.gecko.FennecInstrumentationTestRunner"
michael@0 12 android:targetPackage="@ANDROID_PACKAGE_NAME@" />
michael@0 13
michael@0 14 <application
michael@0 15 android:label="@string/app_name" >
michael@0 16 <uses-library android:name="android.test.runner" />
michael@0 17
michael@0 18 <!-- Fake handlers to ensure that we have some share intents to show in our share handler list -->
michael@0 19 <activity android:name="org.mozilla.gecko.RobocopShare1"
michael@0 20 android:label="Robocop fake activity">
michael@0 21
michael@0 22 <intent-filter android:label="Fake robocop share handler 1">
michael@0 23 <action android:name="android.intent.action.SEND" />
michael@0 24 <category android:name="android.intent.category.DEFAULT" />
michael@0 25 <data android:mimeType="text/*" />
michael@0 26 </intent-filter>
michael@0 27
michael@0 28 </activity>
michael@0 29
michael@0 30 <activity android:name="org.mozilla.gecko.RobocopShare2"
michael@0 31 android:label="Robocop fake activity 2">
michael@0 32
michael@0 33 <intent-filter android:label="Fake robocop share handler 2">
michael@0 34 <action android:name="android.intent.action.SEND" />
michael@0 35 <category android:name="android.intent.category.DEFAULT" />
michael@0 36 <data android:mimeType="text/*" />
michael@0 37 </intent-filter>
michael@0 38
michael@0 39 </activity>
michael@0 40
michael@0 41 </application>
michael@0 42
michael@0 43 </manifest>

mercurial