Reputation: 25
I am using macincloud to do some xcode work and I have a xcode package that works fine on the computer it was made on, but in macincloud I get a no module error. How do I check on my pod library, is it part of the of the computer or is part of my code?
I have read about opening up terminal and typing in different commands to install pods but nothing is working
Here is what is in my Podfile:
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'WallpaperBoard' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
pod 'IQKeyboardManagerSwift'
pod 'Google-Mobile-Ads-SDK'
pod 'DBImageColorPicker'
pod 'SSUIViewMiniMe'
# Pods for WallpaperBoard
end
Upvotes: 0
Views: 560
Reputation: 5212
Cocoapods is a dependency manager. Running the pod install
command on Terminal, it downloads all the Pods as external dependencies and creates a .xcworkspace
for your project.
It needs to be run once in every different computer you run your project.
On Mac In Cloud:
cd
command. Example: cd /Users/user_name/Desktop/project_folder
pod install
.xcworkspace
fileUpvotes: 1