mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-04 19:19:29 +01:00
15 lines
254 B
Bash
Executable File
15 lines
254 B
Bash
Executable File
#!/bin/sh -ve
|
|
git apply ./scripts/enable-android-google-services.patch
|
|
flutter clean
|
|
flutter pub get
|
|
cd ios
|
|
rm -rf Pods
|
|
rm Podfile.lock
|
|
pod install
|
|
pod update
|
|
cd ..
|
|
flutter build ios --release
|
|
cd ios
|
|
bundle update fastlane
|
|
bundle exec fastlane beta
|
|
cd .. |