* initial scripts n actions * custom cshared isolate * kitlin fixes * integrate and token fix * executable and gstreamer * disable check dupes, fix gstreamer * another linux update, removed 2 android builds * new updates * final android attempt * formatting --------- Co-authored-by: ggurdin <ggurdin@gmail.com>
16 lines
No EOL
309 B
Bash
16 lines
No EOL
309 B
Bash
#!/bin/sh -ve
|
|
flutter pub add fcm_shared_isolate:0.1.0
|
|
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 .. |