Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@wkoszek
Created August 4, 2016 18:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wkoszek/197b20ca587f9c8ef8daf438aed086ce to your computer and use it in GitHub Desktop.
Save wkoszek/197b20ca587f9c8ef8daf438aed086ce to your computer and use it in GitHub Desktop.
fixed_podfile
use_frameworks!
platform :ios, '8.0'
def mypods
pod 'Fabric'
pod 'Crashlytics'
pod 'AWSCore'
pod 'AWSS3'
pod 'AWSCognito'
pod "Lock", :inhibit_warnings => true
pod "JWTDecode"
pod "SimpleKeychain"
pod "NSLogger"
pod 'GBDeviceInfo', '~> 3.5'
pod 'BZipCompression', '~> 1.0.0'
pod "MPMessagePack"
pod 'JTCalendar', '~> 2.0'
pod 'InAppSettingsKit'
pod 'DZNEmptyDataSet'
pod 'GCNetworkReachability'
pod 'GroundControl', :git => 'https://github.com/wkoszek/GroundControl.git'
pod 'FontAwesome+iOS'
pod 'Whisper'
pod "Realm"
pod 'JSONModel'
pod 'mailgun', :git => 'https://github.com/wkoszek/objc-mailgun'
end
target 'Sensorama' do
mypods
target :SensoramaTests do
inherit! :search_paths
end
target 'SensoramaUITests' do
inherit! :search_paths
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment