I’m using the latest version of Xcode and cocoa pods. I installed a bunch of modules using pod install. What should I do next to get Xcode to recognize these modules? Should it recognize them immediately? I’m getting a no module is found error and I’m trying to figure out the cause. Unfortunately, that’s all I have right now to debug the problem.
I asked a similar question that was closed because of lack of debugging details. Here’s more info.
Here’s my Podfile:
# Uncomment the next line to define a global platform for your project
platform :ios, '13.0'
target 'test' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for Minuteapp
pod 'SwiftMessages', '~> 5.0'
pod 'GoogleSignIn'
pod 'Promises'
pod 'Flurry-iOS-SDK/FlurryMessaging'
pod ‘Flurry-iOS-SDK/FlurrySDK’
pod 'ApphudSDK'
pod 'FittedSheets'
pod 'ColorThiefSwift', '>= 0.4.1'
pod "SwiftChart"
pod 'SDWebImage', '~> 5.0'
pod 'AQPlayer'
pod 'STPopup'
pod 'Toast-Swift', '~> 5.0.1'
pod 'PaddingLabel', '1.2'
pod 'DeviceKit'
pod 'ApphudSDK'
# pod 'SwiftyStoreKit'
pod 'ReachabilitySwift'
pod 'Adjust', '~> 4.29.2'
pod 'Amplitude', '~> 8.5.0'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ONLY_ACTIVE_ARCH'] = 'YES'
end
end
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
I think the issue is that I’m building test.xcodeproj and not test.workspace. Is that a problem? I tried to build test.workspace but I’m not seeing files on the left or a scheme at the top. Can someone help?