We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b154ab commit a807ff2Copy full SHA for a807ff2
Android/testbed/app/build.gradle.kts
@@ -92,7 +92,12 @@ android {
92
}
93
throw GradleException("Failed to find API level in $androidEnvFile")
94
95
- targetSdk = 35
+
96
+ // This controls the API level of the maxVersion managed emulator, which is used
97
+ // by CI and cibuildwheel. 34 takes up too much disk space (#142289), 35 has
98
+ // issues connecting to the internet (#142387), and 36 and later are not
99
+ // available as aosp_atd images yet.
100
+ targetSdk = 33
101
102
versionCode = 1
103
versionName = "1.0"
0 commit comments