File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7878 uses : actions/upload-artifact@v4
7979 with :
8080 name : production-appbundle
81- path : build/app/outputs/bundle/release/app-release.aab
82- build-ios :
83- name : Build Unsigned iOS (Validation Only)
84- needs : verify
85- runs-on : macos-latest
86- if : github.event_name == 'push'
87- steps :
88- - name : Checkout Repository
89- uses : actions/checkout@v4
90- - name : Setup Flutter
91- uses : subosito/flutter-action@v2
92- with :
93- channel : " stable"
94- cache : true
95- - name : Install Dependencies
96- run : flutter pub get
97- - name : Generate env.json
98- run : |
99- cat <<EOF > env.json
100- {
101- "API_BASE_URL": "${{ secrets.API_BASE_URL }}"
102- }
103- EOF
104- - name : Build iOS (Unsigned)
105- run : |
106- flutter build ios --release --no-codesign \
107- --dart-define-from-file=env.json \
108- --dart-define=APP_ENV=production
81+ path : build/app/outputs/bundle/release/app-release.aab
Original file line number Diff line number Diff line change @@ -26,6 +26,7 @@ render.experimental.xml
2626# Keystore files
2727* .jks
2828* .keystore
29+ keystore.txt
2930
3031# Google Services (e.g. APIs or Firebase)
3132google-services.json
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ plugins {
55
66android {
77 namespace = " com.example.monet"
8- compileSdk = flutter.compileSdkVersion
8+ compileSdk = 37
99 ndkVersion = flutter.ndkVersion
1010
1111 compileOptions {
Original file line number Diff line number Diff line change 11android.builtInKotlin =false
22android.newDsl =false
3+ android.suppressUnsupportedCompileSdk =37
34android.useAndroidX =true
45org.gradle.jvmargs =-Xmx8G -XX:MaxMetaspaceSize =4G -XX:ReservedCodeCacheSize =512m -XX:+HeapDumpOnOutOfMemoryError
You can’t perform that action at this time.
0 commit comments