diff --git a/build-flutter.sh b/build-flutter.sh new file mode 100644 index 0000000..255c5fe --- /dev/null +++ b/build-flutter.sh @@ -0,0 +1,34 @@ +#!/bin/sh +# Build windows +# Build web +flutter build web --analyze-size +# Build android +flutter build apk --target-platform android-arm64 --analyze-size +# Build macos +flutter build macos --analyze-size +# Build ios +tee ./ExportOptions.plist <<-'EOF' + + + + + compileBitcode + + destination + export + method + development + signingStyle + automatic + stripSwiftSymbols + + teamID + 428HLCER82 + thinning + <none> + + + +EOF + +flutter build ipa --export-options-plist=ExportOptions.plist --analyze-size