mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2025-04-25 03:17:53 +02:00

This switches to the FOSS implementation of the google libraries so we have no more Blobs there.
14 lines
223 B
Bash
Executable File
14 lines
223 B
Bash
Executable File
#!/bin/sh -ve
|
|
flutter clean
|
|
flutter pub get
|
|
cd ios
|
|
rm -rf Pods
|
|
rm Podfile.lock
|
|
arch -x86_64 pod install
|
|
arch -x86_64 pod update
|
|
cd ..
|
|
flutter build ios --release
|
|
cd ios
|
|
bundle update fastlane
|
|
bundle exec fastlane beta
|
|
cd .. |