No Such Module Moya - swift

I am Using xcode 13.4.1 and installing pod 'SwiftyJSON', '~> 4.0'
pod 'Moya', '~> 15.0' these pods successfully i can't import these pods in my class.

try to use
pod "Moya", '~> 13.0'

Related

Use of undeclared identifier 'FIRAnalytics'

i am facing this issue when add firebase dynamic links in ios android working fine
pod 'FBSDKCoreKit', '5.15.0'
pod 'FBSDKLoginKit', '5.15.0'
pod 'FBSDKShareKit', '5.15.0'
pod 'Firebase/Messaging', '~> 7.4.0'
pod 'Firebase/Analytics', '~> 7.0.0'

'Chrono' file not found time.h import firestore using cocoapod in Swift 5 / IOS 10

We are on Swift 5, IOS 10. We recently included Firesbase/Firestore in the pod file. The pod file looks like this.
platform :ios, '11.0'
use_frameworks!
target 'ProjectName' do
inherit! :search_paths
# Pods for testing
pod 'GoogleAPIClientForREST'
pod 'Firebase/Analytics'
pod 'Firebase/Performance'
pod 'Firebase/Auth'
pod 'Firebase/Firestore'
pod 'Fabric', '~> 1.10.2'
pod 'Crashlytics', '~> 3.13.4'
pod 'Alamofire', '~> 5.0.0-rc.3' # Used to upload files with multipart
pod 'MessageKit', '~> 3.0.0-swift5'
end
When we build the project, .
import FirebaseFirestore
we get the following error
'chrono' file not found time.h
Tried all the suggestions listed here. But none seem to work.

Use of unresolved identifier 'FirebaseApp', only while creating a build

I am trying to use Firebase for Analytics but when I add FirebaseApp.configure() in didFinishLaunchingWithOptions in AppDelegate.
The Xcode gives Use of unresolved identifier 'FirebaseApp'.
Strangely, if I build the code in simulator, it installs, but the error is generated only when I try to archive with Generic iOS device.
To solve this I tried replacing it with FireApp.configure() which can create the build but crashes when installed through TestFlight.
The deployment version in 10.0 for the app and Swift Version is 4.
It is compatible with latest version of Cocoapods.
Tried to replace FirebaseApp.configure() with FireApp.configure()
Use of unresolved identifier 'FirebaseApp'
Podfile is as follows
workspace 'Main.xcworkspace'
platform :ios, '10.0'
use_frameworks!
project 'A'
project 'B'
project 'C'
project 'D'
def common_pods
pod 'Whisper', '~> 5.1.0'
pod 'Gifu', '~> 2.0'
pod 'Alamofire', '~> 4.0'
pod 'SwiftyJSON'
pod 'UIColor_Hex_Swift', '~> 3.0.2'
pod 'DKImagePickerController', '~> 4.0.4'
pod 'ReachabilitySwift', '~> 3'
pod 'HueKit'
pod 'HanekeSwift', :git => 'https://github.com/Haneke/HanekeSwift.git'
pod 'PKHUD', '~> 4.0'
pod 'MZFormSheetPresentationController'
pod 'Spring', :git => 'https://github.com/MengTo/Spring.git', :branch => 'swift4'
pod 'Locksmith'
pod 'Google/SignIn'
pod 'DeviceKit', '~> 1.0'
pod 'Amplitude-iOS', '~> 3.7.0'
pod 'Firebase'
pod 'Fabric'
pod 'Crashlytics'
pod 'Firebase/Analytics'
pod 'TOCropViewController'
pod 'Hero'
pod 'Socket.IO-Client-Swift', '~> 14.0.0'
pod 'NewPopMenu', '~> 2.0'
pod "QRCode"
pod 'VVCircleProgressBar'
pod 'PMAlertController'
pod 'SwiftMessages', :git => 'https://github.com/SwiftKickMobile/SwiftMessages', :commit => '2e4381b61648a0451a7852b57bb0b4a82a4e6ce2'
pod 'MaterialShowcase'
end
target 'C' do
project 'C/C.xcodeproj'
pod 'Alamofire', '~> 4.0'
pod 'SwiftyJSON'
pod 'Locksmith'
end
target 'B' do
project 'B/B.xcodeproj'
pod 'SwiftyJSON'
pod 'Gifu', '~> 2.0'
pod 'UIColor_Hex_Swift', '~> 3.0.2'
pod 'DKImagePickerController', '~> 4.0.4'
pod 'ReachabilitySwift', '~> 3'
pod 'HanekeSwift', :git => 'https://github.com/Haneke/HanekeSwift.git'
pod 'PKHUD', '~> 4.0'
pod 'MZFormSheetPresentationController'
pod 'DeviceKit', '~> 1.0'
pod 'Amplitude-iOS', '~> 3.7.0'
pod 'Spring', :git => 'https://github.com/MengTo/Spring.git', :branch => 'swift4'
pod 'TOCropViewController'
pod 'Alamofire', '~> 4.0'
pod 'Whisper', '~> 5.1.0'
end
target 'Main' do
project 'Main.xcodeproj'
common_pods
end
target 'D' do
project 'D/D.xcodeproj'
common_pods
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
config.build_settings['SWIFT_VERSION'] = '4.0'
config.build_settings['SWIFT_OPTIMIZATION_LEVEL'] = '-Onone'
end
end
end
I added import FirebaseCore then the issue has resolved
Are you importing Firebase into your class? Try import Firebase.
Since you have a lot of targets, might be something related to them. Which of your targets are you archiving?
I added Firebase pods, in the Main project.

No Such Module Xcode Obc-j to Swift in Single File

I realize this is a common bug, but I have tried many other solutions, and believe I have a new wrinkle to it so I'll ask here.
I have this class in which I am trying to
import FBSDKLoginKit
But I get a no such module error. However, this class used to be in Objective-C, and I am able to do the same import in other (Swift) classes, but not this one.
Here is my podfile:
platform :ios, '9.0'
use_frameworks!
target 'Community' do
pod 'FBSDKCoreKit', '~> 4.30'
pod 'FBSDKLoginKit', '~> 4.30'
pod 'GoogleMaps', '~> 2.5'
pod 'GooglePlaces', '~> 2.5'
pod 'CropViewController'
pod 'ImageSlideshow', '~> 1.5'
pod 'GBHFacebookImagePicker', '~> 2.0'
pod 'JSQMessagesViewController'
pod 'TwilioChatClient', '~> 2.0.1'
# pod 'TwilioAccessManager', '~> 0.1.1'
pod 'Alamofire', '~> 4.7'
end
What gives?

XCode 9.1 crashes, just after running app on device or simulator

XCode 9.2 started crashing just after I run my app, either on simulator or real device.
Is there any reset or reinstall for XCode?
I am using these PODs:
# Pods for Handee Client
pod 'SkyFloatingLabelTextField', '~> 3.0'
pod 'PMSuperButton'
pod 'RAMAnimatedTabBarController', '~> 3.0.1'
pod 'Firebase/Auth'
pod 'PopupDialog', '~> 0.6'
pod 'Font-Awesome-Swift', '~> 1.7.1'
pod 'IGZLocation', '~> 1.0'
pod 'SMDatePicker'
pod 'ALCameraViewController', '~> 2.0.3'
pod 'XLPagerTabStrip', '~> 8.0'
pod 'HCSStarRatingView', '~> 1.5'
pod 'Alamofire', '~> 4.5'
pod 'AlamofireObjectMapper', '~> 5.0'
pod 'AlamofireImage', '~> 3.3'
pod 'Toast-Swift', '~> 3.0.1'
pod 'DGElasticPullToRefresh'
pod 'RxSwift', '~> 4.0'
pod 'RxCocoa', '~> 4.0'
pod 'PKHUD', '~> 5.0'