From 37177c4153e7c6197077df72850d74efbf68d21b Mon Sep 17 00:00:00 2001 From: a-wing <1@233.email> Date: Sun, 19 May 2024 20:20:18 +0800 Subject: [PATCH] fix android 2 --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index af3069ff..c4a68d8e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,8 @@ jobs: PKG_WHIPINTO_NAME: "" # https://source.android.com/docs/setup/reference/build-numbers - CARGO_NDK_ANDROID_PLATFORM: 25 + # https://github.com/webrtc-rs/webrtc/pull/508 + # CARGO_NDK_ANDROID_PLATFORM: 25 steps: - name: Checkout source code uses: actions/checkout@v4 @@ -65,7 +66,7 @@ jobs: if: contains(matrix.job.target, 'android') run: | cargo install cargo-ndk - echo "BUILD_NDK=ndk -t arm64-v8a" >> $GITHUB_ENV + echo "BUILD_NDK=ndk --target arm64-v8a" --platform 25>> $GITHUB_ENV - name: Install prerequisites shell: bash