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