Compare commits

..

9 Commits

Author SHA1 Message Date
Ian VanSchooten 21d015f1bf
Merge c1f2374daa into cc0ee7cbc2 2024-10-07 11:41:21 -04:00
Ian VanSchooten c1f2374daa Rename workflow 2024-10-07 11:41:12 -04:00
Ian VanSchooten 60337706e5 Avoid incrementing version number 2024-10-07 11:41:12 -04:00
Ian VanSchooten c770ae7e1a Use fastlane to build 2024-10-07 11:41:12 -04:00
Ian VanSchooten da5d0ba1dc Add fastlane match token 2024-10-07 11:41:12 -04:00
Ian VanSchooten dd5b929537 Add ios build step to ci 2024-10-07 11:41:12 -04:00
Ian VanSchooten e70a70c1ad Specify androidapi for gomobile 2024-10-07 11:41:12 -04:00
Ian VanSchooten eca87251ac Add build workflow 2024-10-07 11:41:12 -04:00
Ian VanSchooten 0879798426 Simplify/fix dart formatting in CI 2024-10-07 11:40:52 -04:00
4 changed files with 17 additions and 4 deletions

View File

@ -26,6 +26,14 @@ jobs:
with:
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
uses: actions/checkout@v3
@ -104,6 +112,7 @@ jobs:
- name: Build Android
env:
TOKEN: ${{ secrets.MACHINE_USER_PAT }}
ANDROID_NDK_HOME: ${{ steps.setup-ndk.outputs.ndk-path }}
GOOGLE_PLAY_KEYSTORE_PASSWORD: ${{ secrets.GOOGLE_PLAY_KEYSTORE_PASSWORD }}
run: |
flutter build appbundle --build-number="$BUILD_NUMBER" --build-name="$BUILD_NAME"

View File

@ -28,9 +28,6 @@ android {
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 {
main.java.srcDirs += 'src/main/kotlin'
}

View File

@ -1,3 +1,11 @@
# Flutter Wrapper - this came from guidance at https://medium.com/@swav.kulinski/flutter-and-android-obfuscation-8768ac544421
-keep class io.flutter.app.** { *; }
-keep class io.flutter.plugin.** { *; }
-keep class io.flutter.util.** { *; }
-keep class io.flutter.view.** { *; }
-keep class io.flutter.** { *; }
-keep class io.flutter.plugins.** { *; }
# Keep our class names for gson
-keep class net.defined.mobile_nebula.** { *; }
-keep class androidx.security.crypto.** { *; }

View File

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