diff options
Diffstat (limited to 'android/app/build.gradle')
-rw-r--r-- | android/app/build.gradle | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/android/app/build.gradle b/android/app/build.gradle new file mode 100644 index 0000000..516e09a --- /dev/null +++ b/android/app/build.gradle @@ -0,0 +1,29 @@ +apply plugin: 'com.android.application' + +android { + compileSdkVersion 28 + + defaultConfig { + applicationId = 'com.classicube.android.client' + minSdkVersion 13 + targetSdkVersion 26 + externalNativeBuild { + cmake { + arguments '-DANDROID_STL=c++_static' + } + } + } + buildTypes { + release { + minifyEnabled false + proguardFiles getDefaultProguardFile('proguard-android.txt'), + 'proguard-rules.pro' + } + } + externalNativeBuild { + cmake { + version '3.10.2' + path 'CMakeLists.txt' + } + } +} |