-
As mentioned by title, however build for IOS works fine its just when testing it fails. Was working before not sure if its because of xcode 14
|
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 19 replies
-
Hi @Mayb3Nots If you are using any caching, can you delete and re-run the build with Xcode 14.0? If that does not work, it's difficult to say. Can you try running another build with the same configuration as your last successful build? |
Beta Was this translation helpful? Give feedback.
-
Is GoogleService-Info.plist file included in your project? |
Beta Was this translation helpful? Give feedback.
-
Adding this to pre-test script fixed my problem. cd ios
pod cache clean --all
rm -rf ~/Library/Caches/CocoaPods
rm -rf Pods
rm -rf ~/Library/Developer/Xcode/DerivedData/*
pod deintegrate
flutter clean
flutter pub get
pod install |
Beta Was this translation helpful? Give feedback.
Adding this to pre-test script fixed my problem.