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

 android {
     compileSdkVersion 25

     defaultConfig {
         applicationId 'org.fltk.android_hello'
         minSdkVersion 14
         targetSdkVersion 25
     }
     buildTypes {
         release {
             minifyEnabled false
             proguardFiles getDefaultProguardFile('proguard-android.txt'),
                           'proguard-rules.pro'
         }
     }
     externalNativeBuild {
         cmake {
             path 'src/main/cpp/CMakeLists.txt'
         }
     }
 }