Bump ndk version

This commit is contained in:
Diego Mello 2023-07-05 13:27:02 -03:00
parent 5005b40bb8
commit 71dafd3bcf
1 changed files with 3 additions and 8 deletions

View File

@ -4,18 +4,13 @@ buildscript {
def isPlay = !taskRequests.contains("foss")
ext {
// TODO: target 33
buildToolsVersion = "33.0.0"
minSdkVersion = 23
compileSdkVersion = 33
targetSdkVersion = 33
if (System.properties['os.arch'] == "aarch64") {
// For M1 Users we need to use the NDK 24 which added support for aarch64
ndkVersion = "24.0.8215888"
} else {
// Otherwise we default to the side-by-side NDK version from AGP.
ndkVersion = "21.4.7075529"
}
// We use NDK 23 which has both M1 support and is the side-by-side NDK version from AGP.
ndkVersion = "23.1.7779620"
glideVersion = "4.11.0"
kotlin_version = "1.8.22"
kotlinVersion = '1.8.22'