Created
August 31, 2016 16:32
-
-
Save choefele/b249f687005b93de323afde399cbef20 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
source 'https://rubygems.org' | |
gem 'cocoapods', :git => 'https://github.com/CocoaPods/CocoaPods.git' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bundle install | |
bundle exec pod install | |
Analyzing dependencies | |
Pre-downloading: `Eureka` from `https://github.com/xmartlabs/Eureka.git`, branch `Swift3` | |
[!] Unable to find host target(s) for MessagesExtension. Please add the host targets for the embedded targets to the Podfile. | |
Certain kinds of targets require a host target. A host target is a "parent" target which embeds a "child" target. These are example types of targets that need a host target: | |
- Framework | |
- App Extension | |
- Watch OS 1 Extension | |
- Messages Extension (except when used with a Messages Application) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Uncomment this line to define a global platform for your project | |
platform :ios, '10.0' | |
target 'MessagesExtension' do | |
use_frameworks! | |
pod 'Eureka', :git => 'https://github.com/xmartlabs/Eureka.git', :branch => 'Swift3' | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment