Compare commits
10 Commits
c1f2374daa
...
7b507b4f58
Author | SHA1 | Date |
---|---|---|
Ian VanSchooten | 7b507b4f58 | |
Ian VanSchooten | 19ea15d1e4 | |
Ian VanSchooten | 74c083d17f | |
Ian VanSchooten | 2996ba0049 | |
Ian VanSchooten | 3ff1061ce0 | |
Ian VanSchooten | 4ad3aa70e1 | |
Ian VanSchooten | b47ad58808 | |
Ian VanSchooten | bedb193538 | |
Ian VanSchooten | 1d1a280a9c | |
Ian VanSchooten | 667ad112d4 |
|
@ -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"
|
||||||
|
|
|
@ -0,0 +1,104 @@
|
||||||
|
# This workflow builds the iOS and Android apps, just to check they build without error
|
||||||
|
|
||||||
|
name: Smoke build
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- main
|
||||||
|
pull_request:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-android:
|
||||||
|
name: Android
|
||||||
|
runs-on: macos-latest
|
||||||
|
steps:
|
||||||
|
- name: Set up Go 1.22
|
||||||
|
uses: actions/setup-go@v4
|
||||||
|
with:
|
||||||
|
go-version: "1.22"
|
||||||
|
|
||||||
|
- uses: actions/setup-java@v2
|
||||||
|
with:
|
||||||
|
distribution: 'zulu'
|
||||||
|
java-version: '17'
|
||||||
|
|
||||||
|
- name: Install flutter
|
||||||
|
uses: subosito/flutter-action@v2
|
||||||
|
with:
|
||||||
|
flutter-version: '3.24.1'
|
||||||
|
|
||||||
|
- name: Check out code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: install dependencies
|
||||||
|
env:
|
||||||
|
TOKEN: ${{ secrets.MACHINE_USER_PAT }}
|
||||||
|
run: |
|
||||||
|
go install golang.org/x/mobile/cmd/gomobile@latest
|
||||||
|
gomobile init
|
||||||
|
flutter pub get
|
||||||
|
touch env.sh
|
||||||
|
|
||||||
|
- name: Build Android debug
|
||||||
|
run: flutter build appbundle --debug
|
||||||
|
|
||||||
|
build-ios:
|
||||||
|
name: iOS
|
||||||
|
runs-on: macos-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Set up Go 1.22
|
||||||
|
uses: actions/setup-go@v4
|
||||||
|
with:
|
||||||
|
go-version: "1.22"
|
||||||
|
|
||||||
|
- name: Install flutter
|
||||||
|
uses: subosito/flutter-action@v2
|
||||||
|
with:
|
||||||
|
flutter-version: '3.24.1'
|
||||||
|
|
||||||
|
- name: Check out code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Install the appstore connect key material
|
||||||
|
env:
|
||||||
|
AC_API_KEY_SECRET_BASE64: ${{ secrets.AC_API_KEY_SECRET_BASE64 }}
|
||||||
|
run: |
|
||||||
|
AC_API_KEY_SECRET_PATH="$RUNNER_TEMP/key.p8"
|
||||||
|
echo "APP_STORE_CONNECT_API_KEY_KEY_FILEPATH=$AC_API_KEY_SECRET_PATH" >> $GITHUB_ENV
|
||||||
|
echo -n "$AC_API_KEY_SECRET_BASE64" | base64 --decode --output "$AC_API_KEY_SECRET_PATH"
|
||||||
|
|
||||||
|
- name: Place Github token for fastlane match
|
||||||
|
env:
|
||||||
|
TOKEN: ${{ secrets.MACHINE_USER_PAT }}
|
||||||
|
run:
|
||||||
|
echo "MATCH_GIT_BASIC_AUTHORIZATION=$(echo -n "defined-machine:${TOKEN}" | base64)" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: install dependencies
|
||||||
|
env:
|
||||||
|
TOKEN: ${{ secrets.MACHINE_USER_PAT }}
|
||||||
|
run: |
|
||||||
|
go install golang.org/x/mobile/cmd/gomobile@latest
|
||||||
|
gomobile init
|
||||||
|
flutter pub get
|
||||||
|
touch env.sh
|
||||||
|
|
||||||
|
- name: Build iOS
|
||||||
|
env:
|
||||||
|
TOKEN: ${{ secrets.MACHINE_USER_PAT }}
|
||||||
|
MATCH_PASSWORD: ${{ secrets.MATCH_PASSWORD }}
|
||||||
|
run: |
|
||||||
|
cd ios
|
||||||
|
pod install
|
||||||
|
fastlane checkBuild
|
||||||
|
cd -
|
||||||
|
|
||||||
|
# verify that the github token didn't make it into the output
|
||||||
|
mkdir -p build/app/test-ios
|
||||||
|
cp ios/MobileNebula.ipa build/app/test-ios
|
||||||
|
cd build/app/test-ios
|
||||||
|
unzip MobileNebula.ipa
|
||||||
|
if find . | xargs strings 2>/dev/null | grep -qF "${TOKEN}" ; then
|
||||||
|
echo "Token found in iOS build"
|
||||||
|
exit 1
|
||||||
|
fi
|
|
@ -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'
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,11 +1,3 @@
|
||||||
# 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 our class names for gson
|
||||||
-keep class net.defined.mobile_nebula.** { *; }
|
-keep class net.defined.mobile_nebula.** { *; }
|
||||||
-keep class androidx.security.crypto.** { *; }
|
-keep class androidx.security.crypto.** { *; }
|
|
@ -18,6 +18,50 @@ default_platform(:ios)
|
||||||
platform :ios do
|
platform :ios do
|
||||||
desc "Push a new beta build to TestFlight"
|
desc "Push a new beta build to TestFlight"
|
||||||
|
|
||||||
|
lane :checkBuild do
|
||||||
|
# Do some things like setting up a temporary keystore to host secrets in CI
|
||||||
|
setup_ci
|
||||||
|
|
||||||
|
# Change signing behavior to work in CI
|
||||||
|
update_code_signing_settings(
|
||||||
|
# Automatic signing seems to be a good thing to have on in dev but will not work in CI
|
||||||
|
use_automatic_signing: false,
|
||||||
|
# The default value for this is iOS Development which is not appropriate for release
|
||||||
|
code_sign_identity: "Apple Distribution",
|
||||||
|
)
|
||||||
|
|
||||||
|
# Find our signing certs and profiles, these come from a private repository and managed by `fastlane match`
|
||||||
|
match(type: 'appstore', app_identifier: ["net.defined.mobileNebula","net.defined.mobileNebula.NebulaNetworkExtension"], readonly: true)
|
||||||
|
|
||||||
|
# Update our main program to have the correct provisioning profile from Apple
|
||||||
|
update_project_provisioning(
|
||||||
|
xcodeproj: "Runner.xcodeproj",
|
||||||
|
target_filter: "Runner",
|
||||||
|
# This comes from match() above
|
||||||
|
profile:ENV["sigh_net.defined.mobileNebula_appstore_profile-path"],
|
||||||
|
build_configuration: "Release"
|
||||||
|
)
|
||||||
|
|
||||||
|
# Update our network extension to have the correct provisioning profile from Apple
|
||||||
|
update_project_provisioning(
|
||||||
|
xcodeproj: "Runner.xcodeproj",
|
||||||
|
target_filter: "NebulaNetworkExtension",
|
||||||
|
# This comes from match() above
|
||||||
|
profile:ENV["sigh_net.defined.mobileNebula.NebulaNetworkExtension_appstore_profile-path"],
|
||||||
|
build_configuration: "Release"
|
||||||
|
)
|
||||||
|
|
||||||
|
build_app(
|
||||||
|
output_name: "MobileNebula.ipa",
|
||||||
|
workspace: "Runner.xcworkspace",
|
||||||
|
scheme: "Runner",
|
||||||
|
export_method: "app-store",
|
||||||
|
export_options: {
|
||||||
|
manageAppVersionAndBuildNumber: false
|
||||||
|
}
|
||||||
|
)
|
||||||
|
end
|
||||||
|
|
||||||
lane :build do
|
lane :build do
|
||||||
# Do some things like setting up a temporary keystore to host secrets in CI
|
# Do some things like setting up a temporary keystore to host secrets in CI
|
||||||
setup_ci
|
setup_ci
|
||||||
|
|
|
@ -7,7 +7,8 @@ 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
|
||||||
|
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
|
||||||
|
|
Loading…
Reference in New Issue