The Range Of Supported Deployment Target Versions Is 9.0 To 14.55 Error While Running Flutter App On IOS Simulator
So I added Firebase Crashlytics in my app and after that I started facing the following issue.
Here is my Podfile for reference
Because of the IPHONEOS_DEVELOPMENT_TARGET error I am unable to run my app and test Crashlytics on my Simulator.
For adding Firebase Crashlytics to my App I added a Run Script in Build Phases using Xcode and in the Run Script I added the following line
${PODS_ROOT}/FirebaseCrashlytics/run
Please help me out fixing this error.
To fix this error I have tried regenerating Pods Folder, Podfile, Podfile.lock, flutter clean, editing the Podfile on my own and https://stackoverflow.com/a/64075795/14876562 using this link's solution and much more.
Request for a quick reply. Thanks in advance.
Answer
Fixed the error.
The fix for this error was adding double quotes in my Run Script that I created for Firebase Crashlytics in Xcode
From:
${PODS_ROOT}/FirebaseCrashlytics/run
To:
"${PODS_ROOT}/FirebaseCrashlytics/run"
Related Questions
- → Function Undefined in Axios promise
- → What are the pluses/minuses of different ways to configure GPIOs on the Beaglebone Black?
- → Click to navigate on mobile devices
- → Playing Video - Server is not correctly configured - 12939
- → How to allow api access to android or ios app only(laravel)?
- → Axios array map callback
- → Access the Camera and CameraRoll on Android using React Native?
- → Update React [Native] View on Day Change
- → Shopify iOS SDK - issue converting BuyProductVariant to BuyProduct
- → BigCommerce and shopify API
- → Warning: Each child in an array or iterator should have a unique "key" prop. Check the render method of `ListView`
- → React Native - Differences between Android and IOS
- → What is the difference between React Native and React?