summaryrefslogtreecommitdiff
path: root/ide/AndroidStudio3/app/build.gradle
blob: fefeafe854df28d2b9a92184547caffa6edd3b1c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
apply plugin: 'com.android.application'

 android {
     compileSdkVersion 25

     defaultConfig {
         applicationId 'org.fltk.android_hello'
         minSdkVersion 14
         targetSdkVersion 25
     }
     buildTypes {
         release {
             minifyEnabled false
         }
     }
     externalNativeBuild {
         cmake {
             path 'src/main/cpp/CMakeLists.txt'
         }
     }
 }