Last active
June 14, 2017 15:21
-
-
Save rascode/fc33f3d56a09c605e2d19ba4dd65e9c4 to your computer and use it in GitHub Desktop.
Podfile template that includes my most commonly used Swift libraries.
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
| 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