Advertisement
Guest User

podfile

a guest
Nov 23rd, 2017
130
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Ruby 1.10 KB | None | 0 0
  1. # Uncomment the next line to define a global platform for your project
  2. platform :ios, '11.1'
  3.  
  4. target 'LearnerLog' do
  5.   # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  6.   use_frameworks!
  7.  
  8.   # Pods for LearnerLog
  9.   pod 'RealmSwift'
  10.   pod 'Charts'
  11.   pod 'GooglePlaces'
  12.   pod 'GooglePlacePicker'
  13.   pod 'GoogleMaps'
  14.   pod 'Firebase/Core'
  15.  
  16.   target 'LearnerLogTests' do
  17.     #inherit! :search_paths
  18.     # Pods for testing
  19.     pod 'Firebase'
  20.     pod 'RealmSwift'
  21.     pod 'Charts'
  22.     pod 'GooglePlaces'
  23.     pod 'GooglePlacePicker'
  24.     pod 'GoogleMaps'
  25.     pod 'Firebase/Core'
  26.   end
  27.  
  28.   target 'LearnerLogUITests' do
  29.     #inherit! :search_paths
  30.     # Pods for testing
  31.     pod 'Firebase'
  32.     pod 'RealmSwift'
  33.     pod 'Charts'
  34.     pod 'GooglePlaces'
  35.     pod 'GooglePlacePicker'
  36.     pod 'GoogleMaps'
  37.     pod 'Firebase/Core'
  38.   end
  39.  
  40.   post_install do |installer|
  41.     installer.pods_project.targets.each do |target|
  42.       target.build_configurations.each do |config|
  43.         config.build_settings['SWIFT_VERSION'] = '4.0'
  44.       end
  45.     end
  46.   end
  47.  
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement