Skip to content

Commit e699dcf

Browse files
authored
Missing update after latest release (#2053)
* Missing update after latest release * Missing update after latest release (note: android.api = 37 fails)
1 parent 105543d commit e699dcf

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

buildozer/default.spec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ fullscreen = 0
109109
#android.features = android.hardware.usb.host
110110

111111
# (int) Target Android API, should be as high as possible.
112-
#android.api = 33
112+
#android.api = 36
113113

114114
# (int) Minimum API your APK / AAB will support.
115115
#android.minapi = 24
@@ -118,7 +118,7 @@ fullscreen = 0
118118
#android.sdk = 20
119119

120120
# (str) Android NDK version to use
121-
#android.ndk = 23b
121+
#android.ndk = 28c
122122

123123
# (int) Android NDK API to use. This is the minimum API your app will support, it should usually match android.minapi.
124124
#android.ndk_api = 21

buildozer/targets/android.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,15 +10,15 @@
1010
from platform import uname
1111
WSL = 'microsoft' in uname()[2].lower()
1212

13-
ANDROID_API = '33'
13+
ANDROID_API = '36'
1414
ANDROID_MINAPI = '24'
1515
APACHE_ANT_VERSION = '1.9.4'
1616

1717
# This constant should *not* be updated, it is used only in the case
1818
# that python-for-android cannot provide a recommendation, which in
1919
# turn only happens if the python-for-android is old and probably
2020
# doesn't support any newer NDK.
21-
DEFAULT_ANDROID_NDK_VERSION = '17c'
21+
DEFAULT_ANDROID_NDK_VERSION = '28c'
2222

2323
import ast
2424
from glob import glob

0 commit comments

Comments
 (0)