summaryrefslogtreecommitdiff
path: root/test/files/android/HelloAndroid.xml
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/android/HelloAndroid.xml')
-rw-r--r--test/files/android/HelloAndroid.xml11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/files/android/HelloAndroid.xml b/test/files/android/HelloAndroid.xml
new file mode 100644
index 0000000000..41907b16a3
--- /dev/null
+++ b/test/files/android/HelloAndroid.xml
@@ -0,0 +1,11 @@
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="">
+ <application>
+ <activity class="HelloAndroid" android:label="HelloAndroid">
+ <intent-filter>
+ <action android:value="android.intent.action.MAIN" />
+ <category android:value="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>