Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit b0a0ecc

Browse files
committed
[[ Android API 29 ]] Update to use android API 29
This patch updates the version of the Android API used for build and deploy from API 28 to API 29.
1 parent 208cdd1 commit b0a0ecc

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

config.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ def validate_android_tools(opts):
618618
opts['ANDROID_NDK_PLATFORM_VERSION'] = '16'
619619

620620
if opts['ANDROID_API_VERSION'] is None:
621-
opts['ANDROID_API_VERSION'] = '28'
621+
opts['ANDROID_API_VERSION'] = '29'
622622

623623
api_ver = opts['ANDROID_API_VERSION']
624624

docs/development/build-android.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ JAVA_SDK=/Library/Java/JavaVirtualMachines/jdk1.8.0_131.jdk/Contents/Home
8585
# Android platform information
8686
ANDROID_NDK_VERSION=r15
8787
ANDROID_NDK_PLATFORM_VERSION=16
88-
ANDROID_API_VERSION=28
88+
ANDROID_API_VERSION=29
8989
ANDROID_PLATFORM=android-${ANDROID_API_VERSION}
9090
ANDROID_NDK=${ANDROID_TOOLCHAIN_DIR}/android-ndk-${ANDROID_NDK_VERSION}
9191
ANDROID_SDK=${ANDROID_TOOLCHAIN_DIR}/android-sdk

ide-support/revdeploylibraryandroid.livecodescript

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ function deployIsValidJDK pPath
212212
return true
213213
end deployIsValidJDK
214214

215-
constant kDeployAndroidTargetSDK = "28"
215+
constant kDeployAndroidTargetSDK = "29"
216216
function deployTargetSdkVersion
217217
return kDeployAndroidTargetSDK
218218
end deployTargetSdkVersion

prebuilt/scripts/android.inc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Android options
22
ANDROID_NDK=${ANDROID_NDK:-"${HOME}/android/toolchain/android-ndk"}
3-
ANDROID_PLATFORM=${ANDROID_PLATFORM:-android-28}
3+
ANDROID_PLATFORM=${ANDROID_PLATFORM:-android-29}
44
55
function configureAndroidToolchain {
66
ANDROID_ARCH=$1

0 commit comments

Comments
 (0)