You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We use the --obfuscate --split-debug-info=build/android/ flags when building our flutter appbundle and ipa. Does the flutter_release plugin support passing these flags?
cd build/app/intermediates/stripped_native_libs/release/stripReleaseDebugSymbols/out/lib/ && zip -r ../../../../../../outputs/bundle/release/symbols.zip . && cd -
Custom workflows need to be evaluated, e.g. I never released a zip to play console.
I'm glad for any Pull requests, if a broader scope of functionality is required.
Hello,
I'm trying to integrate with https://github.com/marketplace/actions/flutter-release-action.
We use the
--obfuscate --split-debug-info=build/android/
flags when building our flutter appbundle and ipa. Does theflutter_release
plugin support passing these flags?Spefically the flow I'm trying to replicate is:
iOS
flutter build ipa --obfuscate --split-debug-info=build/ios/
build/ios/ipa/$APP_NAME.ipa
to TestflightAndroid
flutter build appbundle --obfuscate --split-debug-info=build/android/
rm -rf build/app/intermediates/stripped_native_libs/release/stripReleaseDebugSymbols/out/lib/.crashlytics
cd build/app/intermediates/stripped_native_libs/release/stripReleaseDebugSymbols/out/lib/ && zip -r ../../../../../../outputs/bundle/release/symbols.zip . && cd -
firebase crashlytics:symbols:upload --app=$FIREBASE_APP_ID build/android/
build/app/outputs/bundle/release/app-release.aab
andbuild/app/outputs/bundle/release/symbols.zip
to Google Play ConsoleThe text was updated successfully, but these errors were encountered: