Specify correct ndk version (#172)

This commit is contained in:
Ian VanSchooten 2024-10-08 12:33:06 -04:00 committed by GitHub
parent 667ad112d4
commit 1d1a280a9c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 4 additions and 10 deletions

View File

@ -26,14 +26,6 @@ jobs:
with: with:
flutter-version: '3.24.1' flutter-version: '3.24.1'
- uses: nttld/setup-ndk@v1
id: setup-ndk
with:
ndk-version: r21b
# r21b is 21.1.6352462, if it is not published here https://developer.android.com/ndk/downloads
# or here https://github.com/android/ndk/wiki/Unsupported-Downloads then you must download them and look at
# source.properties to determine the version
- name: Check out code - name: Check out code
uses: actions/checkout@v3 uses: actions/checkout@v3
@ -112,7 +104,6 @@ jobs:
- name: Build Android - name: Build Android
env: env:
TOKEN: ${{ secrets.MACHINE_USER_PAT }} TOKEN: ${{ secrets.MACHINE_USER_PAT }}
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}
GOOGLE_PLAY_KEYSTORE_PASSWORD: ${{ secrets.GOOGLE_PLAY_KEYSTORE_PASSWORD }} GOOGLE_PLAY_KEYSTORE_PASSWORD: ${{ secrets.GOOGLE_PLAY_KEYSTORE_PASSWORD }}
run: | run: |
flutter build appbundle --build-number="$BUILD_NUMBER" --build-name="$BUILD_NAME" flutter build appbundle --build-number="$BUILD_NUMBER" --build-name="$BUILD_NAME"

View File

@ -28,6 +28,9 @@ android {
compileSdkVersion 34 compileSdkVersion 34
// default ndk version for AGP 8.5: https://developer.android.com/build/releases/past-releases/agp-8-5-0-release-notes
ndkVersion "26.1.10909125"
sourceSets { sourceSets {
main.java.srcDirs += 'src/main/kotlin' main.java.srcDirs += 'src/main/kotlin'
} }

View File

@ -7,7 +7,7 @@ clean:
mobileNebula.aar: *.go go.sum mobileNebula.aar: *.go go.sum
go get -d golang.org/x/mobile/cmd/gomobile go get -d golang.org/x/mobile/cmd/gomobile
gomobile bind -trimpath -v --target=android gomobile bind -trimpath -v --target=android -androidapi 26
MobileNebula.xcframework: *.go go.sum MobileNebula.xcframework: *.go go.sum
go get -d golang.org/x/mobile/cmd/gomobile go get -d golang.org/x/mobile/cmd/gomobile