summaryrefslogtreecommitdiff
path: root/ide/AndroidStudio3/app/build.gradle
blob: dd66c8d93c0e261126ff67d8b7e377f6c0e99500 (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_hello'
         minSdkVersion 14
         targetSdkVersion 25
         externalNativeBuild {
             cmake {
                 arguments '-DANDROID_STL=c++_shared'
             }
         }
     }
     buildTypes {
         release {
             minifyEnabled false
         }
     }
     externalNativeBuild {
         cmake {
             path 'src/main/cpp/CMakeLists.txt'
         }
     }
 }