No such module 'TwilioSDK' when importing as CocoaPod - swift

XCode 7.2.1
Swift 2
CocoaPods 0.39.0
Podfile:
platform :ios, '8.0'
use_frameworks!
target 'vent-ios-client' do
pod 'TwilioSDK', ' ~> 1.2.0'
end
According to this and this I don't need to create a Bridging-Header.h file or tweak my header search paths if I use use_frameworks!. I should just be able to import the pod by it's name and it should work.
But all of the following result in "No such module" errors:
import TwilioSDK
import TCDevice
import TCDevice.h
import TwilioSDK/TCDevice
import TwilioSDK/TCDevice.h
Here is what the TwilioSDK file structure looks like:
I am loading my project's .xcworkspace file. And pod install completed successfully.

Related

Swift Use of unresolved identifier 'RealmApp'

I was following this Realm ios SDK quickstart
https://docs.mongodb.com/realm/ios/quick-start/
here is my swift code
import Foundation
import SwiftUI
import RealmSwift
import UIKit
let app = RealmApp(id: "xxxx")
however i keep getting this error
Use of unresolved identifier 'RealmApp'
this is my pod file
# Uncomment the next line to define a global platform for your
project
platform :ios, '12.0'
target 'Emma' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for Emma
pod 'Firebase'
pod 'RealmSwift', '=10.0.0-beta.2'
target 'EmmaTests' do
inherit! :search_paths
# Pods for testing
end
target 'EmmaUITests' do
# Pods for testing
end
end
RealmSwift module has been installed through the pod file. I don't know how to resolve the issue since that is what is listed in the quick start.
I was getting the same error. At some point it seems let app = RealmApp(id: "xxxx") was changed to let app = App(id: "xxxx").

No such module 'InputBarAccessoryView'

Trying to get MessageKit setup within my project. I'm getting the following error - 'No such module 'InputBarAccessoryView' within the
MessagesViewController+Keyboard.swift:26:8: No such module 'InputBarAccessoryView'
I've tried installing pods, updating pods and deintegrating.
import Foundation
import InputBarAccessoryView
Should compile normally. Only error that persists.
In My case i will update pod file Ios version
# Uncomment the next line to define a global platform for your project
platform :ios, '14.0'
target 'Messanger' do
# Comment the next line if you don't want to use dynamic frameworks
use_frameworks!
# Pods for Messanger
pod 'InputBarAccessoryView'
end

Cannot import frameworks on new swift files when using cocoapods

Here is my podfile
# Uncomment the next line to define a global platform for your project
platform :ios, '9.0'
target 'App' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pod 'Firebase/Core'
pod 'Firebase/Auth'
pod 'Fabric'
pod 'Crashlytics'
pod 'Firebase/Database'
# Pods for App
target 'AppTests' do
inherit! :search_paths
# Pods for testing
end
target 'AppUITests' do
inherit! :search_paths
# Pods for testing
end
end
I then run pod install. I open the pods workspace as per usual.
Now in my AppDelegate.swift I can import frameworks without issue
import UIKit
import CoreData
import Firebase
import FirebaseCore
import Fabric
import Crashlytics
In my ViewController.swift, I can again import frameworks without issue
import UIKit
import Firebase
import FirebaseAuth
import FirebaseDatabase
The issue is when I get to my new view controller, called HomeController.swift
import UIKit
import Firebase
import FirebaseAuth
import FirebaseDatabase
It cannot find the frameworks, however it builds and runs fine. Just annoying as I lose code completion issues and have error warnings.
Not sure why it works on two files but not the third, it also builds and runs fine so seems like IDE issue rather than actual code/framework reference issue
Just looking at tips to resolve
Check the target membership of this new file to see if has the same as 2 previous one.
Select the file -> File Inspector -> Target Membership

Xcode does not see framework installed via cocoa pods

I am trying to add the SharkORM framework to my application but somehow after installing pod which looks like :
target 'XXX' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for XXX
pod 'Firebase/Core'
pod 'SharkORM'
target 'XXXTests' do
inherit! :search_paths
# Pods for testing
end
target 'XXXUITests' do
inherit! :search_paths
# Pods for testing
end
end
and using command pod install; getting this :
Analyzing dependencies
Downloading dependencies
Using Firebase (3.12.0)
Using FirebaseAnalytics (3.6.0)
Using FirebaseCore (3.4.7)
Using FirebaseInstanceID (1.0.8)
Using GoogleInterchangeUtilities (1.2.2)
Using GoogleSymbolUtilities (1.1.2)
Using GoogleToolboxForMac (2.1.1)
Using SharkORM (2.1.1)
Generating Pods project
Integrating client project
Sending stats
Pod installation complete! There are 2 dependencies from the Podfile and 8 total pods installed.
Which sounds great because the installation is succeed.
In the AppDelegate.swift getting error :
Use of undeclared type 'SRKDelegate' here :
class AppDelegate: UIResponder, UIApplicationDelegate, SRKDelegate {
I would say that i have to use import SharkORM on the top of my file but it does not shows me this file exist. It should - > Inside Pods file i have these components then what is going on ? As u can see I am using Firebase which is working.
Thanks in advance!
Install the framework
pod install
Open your workspace XXX.xcodeproj and create a bridging header. To create bridging header
//File -> New File -> Header File
//Save it as a YourApp-Bridging-Header
Compile the SharkORM framework target
Then include the framework header within your app, by adding this to the bridging header
#include <SharkORM/SharkORM.h>
import module import SharkORM in AppDelegate class
import SharkORM››
Add SRKDelegate in AppDelegate class
class AppDelegate: UIResponder, UIApplicationDelegate, SRKDelegate
You have to import SharkORM to use the pod. Also, make sure you're working on the .xcworkspace file in the same directory as the project (it's automatically created when you execute pod install.

How to link and use embedded framework with Swift and cocoapods?

My project include three target: App, Lib. Lib is depended on Alamofire via Cocoapod, and have umbrella header named Lib.h
Inside a swift source file of App target i use
import Lib
and compiler complain that
missing required module: 'Alamofire'
My podfile is something like this :
source 'https://github.com/CocoaPods/Specs.git'
workspace '../Myworkspace'
xcodeproj 'MyProject'
platform :ios, '8.0'
use_frameworks!
link_with 'Lib'
pod 'Alamofire'