Upgrade to NDK 26 (#2762)
This commit is contained in:
parent
b2ab117380
commit
b89c62f931
|
|
@ -70,7 +70,7 @@ val androidTargetSdkVersion by extra(34)
|
||||||
val androidMinSdkVersion by extra(27)
|
val androidMinSdkVersion by extra(27)
|
||||||
val androidBuildToolsVersion by extra("34.0.0")
|
val androidBuildToolsVersion by extra("34.0.0")
|
||||||
val androidCompileSdkVersion by extra(34)
|
val androidCompileSdkVersion by extra(34)
|
||||||
val androidCompileNdkVersion by extra("25.2.9519653")
|
val androidCompileNdkVersion by extra("26.0.10792818")
|
||||||
val androidSourceCompatibility by extra(JavaVersion.VERSION_17)
|
val androidSourceCompatibility by extra(JavaVersion.VERSION_17)
|
||||||
val androidTargetCompatibility by extra(JavaVersion.VERSION_17)
|
val androidTargetCompatibility by extra(JavaVersion.VERSION_17)
|
||||||
|
|
||||||
|
|
|
||||||
Binary file not shown.
|
|
@ -83,7 +83,8 @@ done
|
||||||
# This is normally unused
|
# This is normally unused
|
||||||
# shellcheck disable=SC2034
|
# shellcheck disable=SC2034
|
||||||
APP_BASE_NAME=${0##*/}
|
APP_BASE_NAME=${0##*/}
|
||||||
APP_HOME=$( cd "${APP_HOME:-./}" && pwd -P ) || exit
|
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
||||||
|
APP_HOME=$( cd "${APP_HOME:-./}" > /dev/null && pwd -P ) || exit
|
||||||
|
|
||||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
MAX_FD=maximum
|
MAX_FD=maximum
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue