From 3964373d816b1666019424c3032dddc6958f0205 Mon Sep 17 00:00:00 2001 From: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Thu, 30 Jul 2026 16:39:35 +0000 Subject: [PATCH] fix(ci): install Android API 34 platform before macOS MAUI build Co-Authored-By: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 13c2941..414e9b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -90,6 +90,13 @@ jobs: - name: Install MAUI workloads run: dotnet workload install maui + # The macOS runner image no longer ships the API level 34 platform. + - name: Install Android SDK dependencies + run: > + dotnet build MauiApp -f net8.0-android -t:InstallAndroidDependencies + -p:AndroidSdkDirectory="${ANDROID_HOME:-$HOME/Library/Android/sdk}" + -p:AcceptAndroidSDKLicenses=True + - name: Build MAUI app (Android) run: dotnet build MauiApp -f net8.0-android