1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/build/mobile/robocop/AndroidManifest.xml.in Wed Dec 31 06:09:35 2014 +0100 1.3 @@ -0,0 +1,43 @@ 1.4 +#filter substitution 1.5 +<?xml version="1.0" encoding="utf-8"?> 1.6 +<manifest xmlns:android="http://schemas.android.com/apk/res/android" 1.7 + package="org.mozilla.roboexample.test" 1.8 + android:versionCode="1" 1.9 + android:versionName="1.0" > 1.10 + 1.11 + <uses-sdk android:minSdkVersion="8" /> 1.12 + 1.13 + <instrumentation 1.14 + android:name="org.mozilla.gecko.FennecInstrumentationTestRunner" 1.15 + android:targetPackage="@ANDROID_PACKAGE_NAME@" /> 1.16 + 1.17 + <application 1.18 + android:label="@string/app_name" > 1.19 + <uses-library android:name="android.test.runner" /> 1.20 + 1.21 + <!-- Fake handlers to ensure that we have some share intents to show in our share handler list --> 1.22 + <activity android:name="org.mozilla.gecko.RobocopShare1" 1.23 + android:label="Robocop fake activity"> 1.24 + 1.25 + <intent-filter android:label="Fake robocop share handler 1"> 1.26 + <action android:name="android.intent.action.SEND" /> 1.27 + <category android:name="android.intent.category.DEFAULT" /> 1.28 + <data android:mimeType="text/*" /> 1.29 + </intent-filter> 1.30 + 1.31 + </activity> 1.32 + 1.33 + <activity android:name="org.mozilla.gecko.RobocopShare2" 1.34 + android:label="Robocop fake activity 2"> 1.35 + 1.36 + <intent-filter android:label="Fake robocop share handler 2"> 1.37 + <action android:name="android.intent.action.SEND" /> 1.38 + <category android:name="android.intent.category.DEFAULT" /> 1.39 + <data android:mimeType="text/*" /> 1.40 + </intent-filter> 1.41 + 1.42 + </activity> 1.43 + 1.44 + </application> 1.45 + 1.46 +</manifest>