ClassiCube/android/app/build.gradle
UnknownShadow200 8ee7028104 Revert "Bump android target SDK version"
This reverts commit 6eee24b414.
2024-08-27 20:00:15 +10:00

29 lines
660 B
Groovy

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'
}
}
}