summaryrefslogtreecommitdiff
path: root/Android/HelloAndroid/app/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorMatthias Melcher <fltk@matthiasm.com>2018-03-02 16:30:45 +0000
committerMatthias Melcher <fltk@matthiasm.com>2018-03-02 16:30:45 +0000
commit9e29ea8a00538ea6d605945bc368295830c0d487 (patch)
treed2d61be3accde3d3bcc94ed90dac05d6f5439e13 /Android/HelloAndroid/app/src/main/AndroidManifest.xml
parentf01eb0ec25d88451bb36c7ba070d60213b3cb8b3 (diff)
Commiting Android sample project structure
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12694 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'Android/HelloAndroid/app/src/main/AndroidManifest.xml')
-rw-r--r--Android/HelloAndroid/app/src/main/AndroidManifest.xml22
1 files changed, 22 insertions, 0 deletions
diff --git a/Android/HelloAndroid/app/src/main/AndroidManifest.xml b/Android/HelloAndroid/app/src/main/AndroidManifest.xml
new file mode 100644
index 000000000..4f59330b9
--- /dev/null
+++ b/Android/HelloAndroid/app/src/main/AndroidManifest.xml
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ package="com.example.native_plasma"
+ android:versionCode="1"
+ android:versionName="1.0">
+ <application
+ android:allowBackup="false"
+ android:fullBackupContent="false"
+ android:icon="@mipmap/ic_launcher"
+ android:label="@string/app_name"
+ android:hasCode="false">
+ <activity android:name="android.app.NativeActivity"
+ android:label="@string/app_name">
+ <meta-data android:name="android.app.lib_name"
+ android:value="native-plasma" />
+ <intent-filter>
+ <action android:name="android.intent.action.MAIN" />
+ <category android:name="android.intent.category.LAUNCHER" />
+ </intent-filter>
+ </activity>
+ </application>
+</manifest>