diff options
Diffstat (limited to 'Tests/VSAndroid/AndroidManifest.xml')
-rw-r--r-- | Tests/VSAndroid/AndroidManifest.xml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/Tests/VSAndroid/AndroidManifest.xml b/Tests/VSAndroid/AndroidManifest.xml new file mode 100644 index 0000000000..951e8f3082 --- /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> |