summaryrefslogtreecommitdiff
path: root/Android/HelloAndroid/app/build.gradle
blob: 07dc4f5a813700441c99d7368eb0f23b657cf3e3 (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 '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'
         }
     }
 }