From ef7810e9ad30d4360b00563b32186bd36e37fbab Mon Sep 17 00:00:00 2001 From: spiritlhl <103393591+spiritLHLS@users.noreply.github.com> Date: Tue, 4 Nov 2025 21:28:55 +0800 Subject: [PATCH] =?UTF-8?q?fix=EF=BC=9A=E6=9B=B4=E6=96=B0apk=E7=9B=AE?= =?UTF-8?q?=E6=A0=87=E7=89=88=E6=9C=AC=E5=88=B0GooglePlay=E6=9C=80?= =?UTF-8?q?=E4=BD=8E=E9=9C=80=E6=B1=82=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/build.yml | 6 +++--- FyneApp.toml | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 770237b..d21fae9 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -74,8 +74,8 @@ jobs: - name: Install Android Build Tools run: | - sdkmanager --install "build-tools;33.0.2" - sdkmanager --install "platforms;android-33" + sdkmanager --install "build-tools;34.0.0" + sdkmanager --install "platforms;android-34" - name: Configure Git for Private Modules run: | @@ -186,7 +186,7 @@ jobs: - name: Sign APK files run: | # 安装 apksigner (包含在 Android build-tools 中) - BUILD_TOOLS_VERSION="33.0.2" + BUILD_TOOLS_VERSION="34.0.0" APKSIGNER="$ANDROID_SDK_ROOT/build-tools/$BUILD_TOOLS_VERSION/apksigner" if [ ! -f "$APKSIGNER" ]; then diff --git a/FyneApp.toml b/FyneApp.toml index 4423c3c..6674c58 100644 --- a/FyneApp.toml +++ b/FyneApp.toml @@ -9,5 +9,5 @@ Build = 1 [Android] MinVersion = 24 -TargetVersion = 33 +TargetVersion = 34 Arch = ["arm64", "x86_64"]