Its not working did everything like in this video

I get the error that the Module SVProgressHUD is not found

here is my Podfile

# Uncomment the next line to define a global platform for your project platform :ios, '9.0' target 'Bachelmatt Garage' do # Comment the next line if you're not using Swift and don't want to use dynamic frameworks use_frameworks! pod 'SVProgressHUD'; end 

Can someone help me please? There where also things for the UITest and ther other Test in there i simply removed them is that causing the Problem?

3

3 Answers

Try to install below code:

target 'MyApp' do pod 'SVProgressHUD', '~> 2.1' end 

In your file

# Uncomment the next line to define a global platform for your project platform :ios, '9.0' target 'Bachelmatt Garage' do # Comment the next line if you're not using Swift and don't want to use dynamic frameworks use_frameworks! pod 'SVProgressHUD', '~> 2.1' end 

Edited

Instead above, Do below code:

source ' platform :ios, ‘9.0’ use_frameworks! target ‘YouMe’ do pod 'SVProgressHUD', '~> 2.1' end 

It will help you.

2

This podfile is working for me:

use_frameworks! target 'appName' do pod 'SVProgressHUD', '~> 2.1.2' pod 'Alamofire', '~> 4.0' pod 'FileKit', '~> 4.0.1' target 'appNameShareExtension' do inherit! :search_paths # Because else we get the "conflicting names" end end 

In the Podfile write this:

pod 'SVProgressHUD', :git => ' 

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge that you have read and understand our privacy policy and code of conduct.