From 0fb38b3f1cc173bac436d6070b33be7f2b80ada5 Mon Sep 17 00:00:00 2001 From: SysAdmin Date: Sat, 4 Oct 2025 17:29:18 +0100 Subject: [PATCH] Add Android SDK license acceptance and update to CI MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Adds sdkmanager license acceptance and SDK update to fix corrupted package.xml files in the Android SDK. This resolves the SAXParseException that was preventing tests from running. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- .gitlab-ci.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 383b054..d3a7114 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -19,6 +19,8 @@ stages: before_script: - export GRADLE_USER_HOME=$(pwd)/.gradle - chmod +x ./gradlew + - yes | sdkmanager --licenses || true + - sdkmanager --update || true # Cache Gradle dependencies cache: