Created
August 18, 2016 18:53
-
-
Save joedaniels29/7bdd9a1b2928c83ee3895845e1233a25 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
source 'https://github.com/CocoaPods/Specs.git' | |
use_frameworks! | |
def default_pods | |
pod 'AFNetworking', '~> 2.5' | |
pod 'FHSegmentedViewController', '~> 1.2' | |
pod 'MMMaterialDesignSpinner' | |
pod 'Fabric' | |
pod 'GoogleConversionTracking' | |
pod 'Crashlytics' | |
pod 'FLEX',:git => 'https://github.com/Flipboard/FLEX', :commit => 'e9e084e6f15cb8b6e42cfe52581852884973084d' | |
pod 'DateTools' | |
pod 'LinqToObjectiveC' | |
pod 'FBSDKCoreKit' | |
pod 'LTMorphingLabel' | |
pod 'Google/Analytics' | |
pod 'Charts', '2.1.4' | |
pod 'ResearchKit' | |
pod 'Mantle' | |
pod 'MagicalRecord' | |
pod 'PonyDebugger', '~> 0.4.5' | |
end | |
target "EpiWatch" do | |
platform :ios, '9.0' | |
xcodeproj 'EpiWatch.xcodeproj' | |
default_pods | |
end | |
target "etrackerwatch Extension" do | |
platform :watchos, '2.0' | |
xcodeproj 'EpiWatch.xcodeproj' | |
end | |
post_install do |installer| | |
installer.pods_project.build_configurations.each do |config| | |
# Configure Pod targets for Xcode 8 compatibility | |
config.build_settings['SWIFT_VERSION'] = '2.3' | |
# config.build_settings['PROVISIONING_PROFILE_SPECIFIER'] = 'ABCDEFGHIJ/' | |
config.build_settings['ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES'] = 'NO' | |
end | |
end | |
#target "APCAppCore" do | |
# platform :ios, '9.0' | |
# xcodeproj 'APCAppCore/APCAppCore.xcodeproj' | |
# pod 'FBSDKCoreKit' | |
# pod 'ResearchKit' | |
#end | |
workspace 'EpiWatch.xcworkspace' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment