Skip to content

Update Android Gradle Plugin to 8.11.0 and Gradle Wrapper to 8.14.3 + update default API target to 35 in tests #3172

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 8 commits into from
Jul 22, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/makefiles/android.mk
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ ANDROID_NDK_VERSION_LEGACY ?= 21e
ANDROID_SDK_TOOLS_VERSION ?= 6514223
ANDROID_SDK_BUILD_TOOLS_VERSION ?= 29.0.3
ANDROID_HOME ?= $(HOME)/.android
ANDROID_API_LEVEL ?= 27
ANDROID_API_LEVEL ?= 35

# per OS dictionary-like
UNAME_S := $(shell uname -s)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-all.zip
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
buildscript {
repositories {
google()
jcenter()
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:8.1.1'
classpath 'com.android.tools.build:gradle:8.11.0'
}
}

allprojects {
repositories {
google()
jcenter()
mavenCentral()
{%- for repo in args.gradle_repositories %}
{{repo}}
{%- endfor %}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
APP_PLATFORM := $(NDK_API)
APP_ABI := $(ARCH)
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,4 @@

# APP_ABI := armeabi armeabi-v7a x86
APP_ABI := $(ARCH)
APP_PLATFORM := $(NDK_API)
2 changes: 1 addition & 1 deletion testapps/on_device_unit_tests/buildozer.spec
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ fullscreen = 0
#android.permissions = INTERNET

# (int) Target Android API, should be as high as possible.
#android.api = 27
android.api = 35

# (int) Minimum API your APK will support.
#android.minapi = 21
Expand Down
6 changes: 3 additions & 3 deletions testapps/on_device_unit_tests/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
'requirements':
'sqlite3,libffi,openssl,pyjnius,kivy,python3,requests,urllib3,'
'chardet,idna',
'android-api': 27,
'android-api': 35,
'ndk-api': 24,
'dist-name': 'bdist_unit_tests_app',
'arch': 'armeabi-v7a',
Expand All @@ -56,7 +56,7 @@
'requirements':
'sqlite3,libffi,openssl,pyjnius,kivy,python3,requests,urllib3,'
'chardet,idna',
'android-api': 27,
'android-api': 35,
'ndk-api': 24,
'dist-name': 'bdist_unit_tests_app',
'arch': 'armeabi-v7a',
Expand All @@ -68,7 +68,7 @@
'aar':
{
'requirements' : 'python3',
'android-api': 27,
'android-api': 35,
'ndk-api': 24,
'dist-name': 'bdist_unit_tests_app',
'arch': 'arm64-v8a',
Expand Down
Loading