Skip to content

Instantly share code, notes, and snippets.

@rascode
Last active June 14, 2017 15:21
Show Gist options
  • Select an option

  • Save rascode/fc33f3d56a09c605e2d19ba4dd65e9c4 to your computer and use it in GitHub Desktop.

Select an option

Save rascode/fc33f3d56a09c605e2d19ba4dd65e9c4 to your computer and use it in GitHub Desktop.
Podfile template that includes my most commonly used Swift libraries.
platform :ios, '10.0'
use_frameworks!
target 'MyApp' do
#Realm
#pod 'RealmSwift'
#Firebase Pods - https://firebase.google.com/docs/ios/setup
#pod 'Firebase/Core' #Prerequisite libraries and Analytics
#pod 'Firebase/Database'
#pod 'Firebase/Auth' #Authentication
#pod 'Firebase/Storage' #Storage
#pod 'Firebase/Messaging'
#pod 'Firebase/RemoteConfig' #Remote Config
#pod 'Firebase/DynamicLinks'
#pod 'Firebase/Invites'
#pod 'Firebase/Crash' #Crash Reporting
#pod 'Firebase/AdMob'
#Networking
#pod 'AFNetworking'
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment