Ad
Ld: Framework Not Found Url_launcher On Flutter 2.10.0, Xcode 13.1
I started facing an issue of
framework not found
, when upgraded flutter from 2.8.1 to 2.10.1. I'm working on mac m1 I tried pub and pod clean with complete cache by using below command and also tried fresh setup on new system
flutter clean
pod cache clean 'FortifySec' --all
rm -rf Pods
pod deintegrate
rm -rf ~/Library/Developer/Xcode/DerivedData/*
rm -rf ~/Library/Caches/CocoaPods
rm -rf ../pubspec.lock
rm -rf .symlinks
pod cache clean --all
flutter pub cache clean
Ad
Answer
I'm on xcode 13.1, resolved my issue by just removing frameworks entry in build setting.
xcode -> target -> Build settings-> Other Linker flag
Removed all entry for thoes it was showing error.
Ad
source: stackoverflow.com
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?
Ad