summaryrefslogtreecommitdiff
path: root/Android/HelloAndroid/app/build.gradle
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/build.gradle
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/build.gradle')
-rw-r--r--Android/HelloAndroid/app/build.gradle23
1 files changed, 23 insertions, 0 deletions
diff --git a/Android/HelloAndroid/app/build.gradle b/Android/HelloAndroid/app/build.gradle
new file mode 100644
index 000000000..07dc4f5a8
--- /dev/null
+++ b/Android/HelloAndroid/app/build.gradle
@@ -0,0 +1,23 @@
+apply plugin: 'com.android.application'
+
+ android {
+ compileSdkVersion 25
+
+ defaultConfig {
+ applicationId 'com.example.native_plasma'
+ minSdkVersion 14
+ targetSdkVersion 25
+ }
+ buildTypes {
+ release {
+ minifyEnabled false
+ proguardFiles getDefaultProguardFile('proguard-android.txt'),
+ 'proguard-rules.pro'
+ }
+ }
+ externalNativeBuild {
+ cmake {
+ path 'src/main/cpp/CMakeLists.txt'
+ }
+ }
+ }