зеркало из https://github.com/mozilla/gecko-dev.git
44 строки
1.5 KiB
XML
44 строки
1.5 KiB
XML
#filter substitution
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="org.mozilla.roboexample.test"
|
|
android:versionCode="1"
|
|
android:versionName="1.0" >
|
|
|
|
<uses-sdk android:minSdkVersion="8" />
|
|
|
|
<instrumentation
|
|
android:name="org.mozilla.gecko.FennecInstrumentationTestRunner"
|
|
android:targetPackage="@ANDROID_PACKAGE_NAME@" />
|
|
|
|
<application
|
|
android:label="@string/app_name" >
|
|
<uses-library android:name="android.test.runner" />
|
|
|
|
<!-- Fake handlers to ensure that we have some share intents to show in our share handler list -->
|
|
<activity android:name="org.mozilla.gecko.RobocopShare1"
|
|
android:label="Robocop fake activity">
|
|
|
|
<intent-filter android:label="Fake robocop share handler 1">
|
|
<action android:name="android.intent.action.SEND" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:mimeType="text/*" />
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity android:name="org.mozilla.gecko.RobocopShare2"
|
|
android:label="Robocop fake activity 2">
|
|
|
|
<intent-filter android:label="Fake robocop share handler 2">
|
|
<action android:name="android.intent.action.SEND" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:mimeType="text/*" />
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
</manifest>
|