]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-142387: Reduce Android testbed API level to 33 (#144315)
authorMalcolm Smith <smith@chaquo.com>
Wed, 28 Jan 2026 23:48:26 +0000 (23:48 +0000)
committerGitHub <noreply@github.com>
Wed, 28 Jan 2026 23:48:26 +0000 (07:48 +0800)
The emulator images for API level 34 and 35 have significant issues with image size and
internet connectivity. Reverts the default API level used for testbed testing to 33.

Android/testbed/app/build.gradle.kts

index 14d43d8c4d5c421c862740aaba80a56ad37d210b..4f184cf42d5b5a9954d24df4faba8229a5cf3ab2 100644 (file)
@@ -92,7 +92,12 @@ android {
             }
             throw GradleException("Failed to find API level in $androidEnvFile")
         }
-        targetSdk = 35
+
+        // This controls the API level of the maxVersion managed emulator, which is used
+        // by CI and cibuildwheel. 34 takes up too much disk space (#142289), 35 has
+        // issues connecting to the internet (#142387), and 36 and later are not
+        // available as aosp_atd images yet.
+        targetSdk = 33
 
         versionCode = 1
         versionName = "1.0"