Skip to content

Commit

Permalink
🚑️ Fix gradle stackoverflow
Browse files Browse the repository at this point in the history
  • Loading branch information
iota9star committed Jun 30, 2024
1 parent 7922852 commit 37e932f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-GP.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: Build split apk
run: |
flutter pub get
flutter build -v apk --target-platform android-arm,android-arm64,android-x64 --split-per-abi --release --dart-define=APP_CHANNEL=play --tree-shake-icons
flutter build apk --target-platform android-arm,android-arm64,android-x64 --split-per-abi --release --dart-define=APP_CHANNEL=play --tree-shake-icons
ls build/app/outputs/flutter-apk
- name: Sign build apk
uses: iota9star/[email protected]
Expand All @@ -51,6 +51,6 @@ jobs:
packageName: io.nichijou.flutter.mikan
releaseFiles: 'build/app/outputs/flutter-apk/*-release-signed.apk'
track: production
inAppUpdatePriority: 3
inAppUpdatePriority: 5
status: completed
mappingFile: build/app/outputs/mapping/release/mapping.txt
2 changes: 1 addition & 1 deletion android/gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ org.gradle.daemon=true
org.gradle.configureondemand=true
org.gradle.parallel=true
org.gradle.caching=true
org.gradle.jvmargs=-Xmx4960m -XX:+HeapDumpOnOutOfMemoryError -Dfile.encoding=UTF-8 -XX:+UseParallelGC
org.gradle.jvmargs=-Xmx2048m -Xms2048m -XX:MaxMetaspaceSize=1024m -XX:ThreadStackSize=4096 -XX:CompilerThreadStackSize=4096
kotlin.incremental=true
kotlin.incremental.java=true
kotlin.caching.enabled=true
Expand Down

0 comments on commit 37e932f

Please sign in to comment.