diff options
Diffstat (limited to 'Android/HelloAndroid/app/build.gradle')
| -rw-r--r-- | Android/HelloAndroid/app/build.gradle | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/Android/HelloAndroid/app/build.gradle b/Android/HelloAndroid/app/build.gradle new file mode 100644 index 000000000..07dc4f5a8 --- /dev/null +++ b/Android/HelloAndroid/app/build.gradle @@ -0,0 +1,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' + } + } + } |
