Skip to content

Commit d8584ed

Browse files
committed
Bump minimal and recommended Android NDK version to 27c
1 parent 3addc6f commit d8584ed

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

ci/makefiles/android.mk

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# Downloads and installs the Android SDK depending on supplied platform: darwin or linux
22

33
# Those android NDK/SDK variables can be override when running the file
4-
ANDROID_NDK_VERSION ?= 25b
4+
ANDROID_NDK_VERSION ?= 27c
55
ANDROID_NDK_VERSION_LEGACY ?= 21e
66
ANDROID_SDK_TOOLS_VERSION ?= 6514223
77
ANDROID_SDK_BUILD_TOOLS_VERSION ?= 29.0.3

doc/source/quickstart.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ named ``tools``, and you will need to run extra commands to install
119119
the SDK packages needed.
120120

121121
For Android NDK, note that modern releases will only work on a 64-bit
122-
operating system. **The minimal, and recommended, NDK version to use is r25b:**
122+
operating system. **The minimal, and recommended, NDK version to use is r27c:**
123123

124124
- `Go to ndk downloads page <https://developer.android.com/ndk/downloads/>`_
125125
- Windows users should create a virtual machine with an GNU Linux os

pythonforandroid/recipe.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ class Recipe(metaclass=RecipeMeta):
109109
recipe if they are built at all, but whose presence is not essential.'''
110110

111111
patches = []
112-
'''Alist of patches to apply to the source. Values can be either a string
112+
'''A list of patches to apply to the source. Values can be either a string
113113
referring to the patch file relative to the recipe dir, or a tuple of the
114114
string patch file and a callable, which will receive the kwargs `arch` and
115115
`recipe`, which should return True if the patch should be applied.'''

pythonforandroid/recommendations.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
MAX_NDK_VERSION = 25
1414

1515
# DO NOT CHANGE LINE FORMAT: buildozer parses the existence of a RECOMMENDED_NDK_VERSION
16-
RECOMMENDED_NDK_VERSION = "25b"
16+
RECOMMENDED_NDK_VERSION = "27c"
1717

1818
NDK_DOWNLOAD_URL = "https://developer.android.com/ndk/downloads/"
1919

0 commit comments

Comments
 (0)