I am working on an iOS application in which I have use the google sign. By adding google Sign, AppAuth module is also added into my project.
Now my project compiles without any error but once the app launches it give me this error.
'/private/preboot/Cryptexes/OS/Users/qaziammar/Library/Developer/Xcode/DerivedData/Cold_Therapy_swiftUI-gyudorvasbgwplgytwphqhodmuxw/Build/Products/Debug-iphoneos/PackageFrameworks/AppAuth.framework/AppAuth' (no such file), '/System/Library/Frameworks/AppAuth.framework/AppAuth' (no such file, not in dyld cache)
I tired different solution but nothing work for me.
I have followed Authenticate Using Google Sign-In on Apple Platforms and add it through CocoaPods. Here is my Podfile:
target 'Cold Therapy swiftUI' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
pod 'FSCalendar'
pod 'GoogleSignIn', '6.0.0'
pod 'SwiftLint'
target 'Cold Therapy swiftUITests' do
inherit! :search_paths
# Pods for testing
end
target 'Cold Therapy swiftUIUITests' do
# Pods for testing
end
end
post_install do |installer|
installer.generated_projects.each do |project|
project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
end
end
end
end