summaryrefslogtreecommitdiff
path: root/CMake/Android/app.build.gradle.in
blob: 9e579a4c7709022050719255f49869ced70da425 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
apply plugin: 'com.android.application'

 android {
     compileSdkVersion 25

     defaultConfig {
         applicationId 'org.fltk.@ANDROID_APP_NAME@'
         minSdkVersion 14
         targetSdkVersion 25
         externalNativeBuild {
             cmake {
                 arguments '-DANDROID_STL=c++_shared'
             }
         }
     }
     buildTypes {
         release {
             minifyEnabled false
         }
     }
     externalNativeBuild {
         cmake {
             path 'src/main/cpp/CMakeLists.txt'
         }
     }
 }