mirror of
https://github.com/python/cpython.git
synced 2026-02-06 18:01:17 +00:00
gh-142387: Reduce Android testbed API level to 33 (#144315)
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.
This commit is contained in:
parent
9b154aba7d
commit
6543720b63
1 changed files with 6 additions and 1 deletions
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue