Created
March 14, 2018 18:38
-
-
Save samdods/bd0df88f9076bca253e7cc14c6cf9e3f to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# sources | |
source 'https://github.com/CocoaPods/Specs.git' | |
# global config | |
platform :ios, '11.0' | |
use_frameworks! | |
workspace 'FunkySocial' | |
# methods to ensure the same version of each library is used across targets | |
def networkAndParsingPods | |
pod 'JSONUtilities', '5.0.0' | |
pod 'TABResourceLoader', '7.2.1' | |
end | |
def uiPods | |
pod 'AdobeMobileSDK', '~> 4.13' | |
end | |
# targets | |
target 'FunkySocial' do | |
project 'FunkySocial/FunkySocial' | |
networkAndParsingPods | |
uiPods | |
target 'FunkySocialTests' do | |
end | |
end | |
target 'ProfileUI' do | |
project 'ProfileUI' | |
uiPods | |
target 'ProfileUITests' do | |
end | |
end | |
target 'Profile' do | |
project 'Profile' | |
networkAndParsingPods | |
target 'ProfileTests' do | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment