16 lines
		
	
	
		
			393 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			393 B
		
	
	
	
		
			Bash
		
	
	
		
			Executable File
		
	
	
| #!/bin/sh -ve
 | |
| git apply ./scripts/enable-android-google-services.patch
 | |
| yq eval '.dependencies.fcm_shared_isolate = "0.1.0"' -i pubspec.yaml # Workaround: 0.2.0 does not work on iOS
 | |
| flutter clean
 | |
| flutter pub get
 | |
| cd ios
 | |
| rm -rf Pods
 | |
| rm -f 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 .. |