summaryrefslogtreecommitdiffstats
path: root/Tests/VSAndroid/AndroidManifest.xml
diff options
context:
space:
mode:
authorKyle Edwards <kyle.edwards@kitware.com>2020-06-12 19:11:04 (GMT)
committerBrad King <brad.king@kitware.com>2020-06-24 12:41:09 (GMT)
commit6051a49c78a36b82e77a62e09f0ba5a5b5d14532 (patch)
treeee9c31b9a8f5530bd0fa4a0c76ded239325f3c45 /Tests/VSAndroid/AndroidManifest.xml
parentbbcaf9689ea76d8deba13870dfc63f0654348b5a (diff)
downloadCMake-6051a49c78a36b82e77a62e09f0ba5a5b5d14532.zip
CMake-6051a49c78a36b82e77a62e09f0ba5a5b5d14532.tar.gz
CMake-6051a49c78a36b82e77a62e09f0ba5a5b5d14532.tar.bz2
Visual Studio: Add Android support
Diffstat (limited to 'Tests/VSAndroid/AndroidManifest.xml')
-rw-r--r--Tests/VSAndroid/AndroidManifest.xml16
1 files changed, 16 insertions, 0 deletions
diff --git a/Tests/VSAndroid/AndroidManifest.xml b/Tests/VSAndroid/AndroidManifest.xml
new file mode 100644
index 0000000..951e8f3
--- /dev/null
+++ b/Tests/VSAndroid/AndroidManifest.xml
@@ -0,0 +1,16 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.example.twolibs"
+ android:versionCode="1"
+ android:versionName="1.0">
+ <uses-sdk android:minSdkVersion="3" />
+ <application android:label="@string/app_name">
+ <activity android:name=".TwoLibs"
+ android:label="@string/app_name">
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>