16 lines
No EOL
303 B
Bash
Executable file
16 lines
No EOL
303 B
Bash
Executable file
#!/bin/sh -ve
|
|
flutter pub add fcm_shared_isolate
|
|
sed -i '' 's,//<GOOGLE_SERVICES>,,g' lib/utils/background_push.dart
|
|
flutter clean
|
|
flutter pub get
|
|
cd ios
|
|
rm -rf Pods
|
|
rm -f Podfile.lock
|
|
pod install
|
|
pod update
|
|
cd ..
|
|
flutter build ios --release
|
|
cd ios
|
|
bundle update fastlane
|
|
bundle exec fastlane beta
|
|
cd .. |