Merge pull request #46145 from akien-mga/android-ndk-21.4.7075529

Android: Bump NDK version to 21.4.7075529
This commit is contained in:
Rémi Verschelde 2021-02-18 00:37:32 +01:00 committed by GitHub
commit 29e0556f6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -373,7 +373,7 @@ def configure(env):
# Return the project NDK version.
# This is kept in sync with the value in 'platform/android/java/app/config.gradle'.
def get_project_ndk_version():
return "21.3.6528147"
return "21.4.7075529"
# Return NDK version string in source.properties (adapted from the Chromium project).

View file

@ -8,7 +8,7 @@ ext.versions = [
kotlinVersion : '1.4.10',
v4Support : '1.0.0',
javaVersion : 1.8,
ndkVersion : '21.3.6528147' // Also update 'platform/android/detect.py#get_project_ndk_version()' when this is updated.
ndkVersion : '21.4.7075529' // Also update 'platform/android/detect.py#get_project_ndk_version()' when this is updated.
]