From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Mon, 22 Jun 2026 00:29:07 +0000 (+0200) Subject: [3.15] gh-142387: Revert Android testbed to API level 35 (GH-151816) (#151883) X-Git-Tag: v3.15.0b3~8 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a940f933af981a90efbd81912091def59c8c2018;p=thirdparty%2FPython%2Fcpython.git [3.15] gh-142387: Revert Android testbed to API level 35 (GH-151816) (#151883) Revert Android testbed to API level 35 (cherry picked from commit 24828e57e17621fff166c7c81c8cf70fd5cf4540) Co-authored-by: Malcolm Smith --- diff --git a/Platforms/Android/testbed/app/build.gradle.kts b/Platforms/Android/testbed/app/build.gradle.kts index e51398fce81e..a56714406803 100644 --- a/Platforms/Android/testbed/app/build.gradle.kts +++ b/Platforms/Android/testbed/app/build.gradle.kts @@ -105,12 +105,13 @@ android { // This controls the API level of the maxVersion managed emulator, which is used // by CI and cibuildwheel. + // * 32 has intermittent failures accessing the internet (#142387). // * 33 has excessive buffering in the logcat client // (https://cs.android.com/android/_/android/platform/system/logging/+/d340721894f223327339010df59b0ac514308826). - // * 34 consumes too much disk space on GitHub Actions (#142289). - // * 35 has issues connecting to the internet (#142387). + // * 34 consumes too much disk space on GitHub Actions (#142289), though switching to the + // "default" image may be a workaround. // * 36 and later are not available as aosp_atd images yet. - targetSdk = 32 + targetSdk = 35 versionCode = 1 versionName = "1.0"