Skip to content

Commit c18fc44

Browse files
authored
Uninstall platforms;android-33-ext5 when building testapps (#667)
1 parent 5d672e7 commit c18fc44

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

scripts/gha/build_testapps.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,8 @@ def patch_android_env(unity_version):
547547
# If this continues to be a problem, this logic might need to be smarter, to remove all versions newer than 32,
548548
# but currently the GitHub runners have 33 as their max.
549549
logging.info("Uninstall Android platform android-33")
550-
_run([sdkmanager_path, "--uninstall", "platforms;android-33", "platforms;android-33-ext4"], check=False)
550+
_run([sdkmanager_path, "--uninstall",
551+
"platforms;android-33", "platforms;android-33-ext4", "platforms;android-33-ext5"], check=False)
551552
except Exception as e:
552553
logging.exception("Failed to uninstall Android platform android-33")
553554

0 commit comments

Comments
 (0)