1#filter substitution
2<?xml version="1.0" encoding="utf-8"?>
3<manifest xmlns:android="http://schemas.android.com/apk/res/android"
4    package="org.mozilla.roboexample.test"
5#ifdef MOZ_ANDROID_SHARED_ID
6    android:sharedUserId="@MOZ_ANDROID_SHARED_ID@"
7#endif
8    android:versionCode="1"
9    android:versionName="1.0" >
10
11    <uses-sdk android:minSdkVersion="@MOZ_ANDROID_MIN_SDK_VERSION@"
12#ifdef MOZ_ANDROID_MAX_SDK_VERSION
13              android:maxSdkVersion="@MOZ_ANDROID_MAX_SDK_VERSION@"
14#endif
15              android:targetSdkVersion="23"/>
16
17    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
18
19    <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
20    <uses-permission android:name="android.permission.WAKE_LOCK" />
21
22    <instrumentation
23        android:name="org.mozilla.gecko.FennecInstrumentationTestRunner"
24        android:targetPackage="@ANDROID_PACKAGE_NAME@" />
25
26    <application
27        android:label="@string/app_name"
28        android:debuggable="true">
29
30        <uses-library android:name="android.test.runner" />
31
32        <!-- Fake handlers to ensure that we have some share intents to show in our share handler list -->
33        <activity android:name="org.mozilla.gecko.RobocopShare1"
34                  android:label="Robocop fake activity">
35
36            <intent-filter android:label="Fake robocop share handler 1">
37                <action android:name="android.intent.action.SEND" />
38                <category android:name="android.intent.category.DEFAULT" />
39                <data android:mimeType="text/*" />
40                <data android:mimeType="image/*" />
41            </intent-filter>
42
43        </activity>
44
45        <activity android:name="org.mozilla.gecko.RobocopShare2"
46                  android:label="Robocop fake activity 2">
47
48            <intent-filter android:label="Fake robocop share handler 2">
49                <action android:name="android.intent.action.SEND" />
50                <category android:name="android.intent.category.DEFAULT" />
51                <data android:mimeType="text/*" />
52                <data android:mimeType="image/*" />
53            </intent-filter>
54
55        </activity>
56
57        <activity android:name="org.mozilla.gecko.LaunchFennecWithConfigurationActivity"
58                  android:label="Robocop Fennec">
59            <intent-filter>
60                <action android:name="android.intent.action.MAIN" />
61                <category android:name="android.intent.category.DEFAULT" />
62            </intent-filter>
63        </activity>
64
65    </application>
66
67</manifest>
68