# Uncomment the next line to define a global platform for your project
 platform :ios, '12.0'

target 'TAW' do
  # Comment the next line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

  # Pods for TAW

# This is used for all Networking within the App
pod 'Alamofire', '~> 4.7'

# This is used throughout the App on all input views to ensure the keyboard doesn't overlap the current responder
pod 'IQKeyboardManagerSwift'

# This is used for asyncronously downloading and caching images
pod 'Kingfisher', '~> 4.0'

# This is used to map json to models
pod 'ObjectMapper', '~> 3.2'

# This is used to animate views throughout the application
pod 'Spruce', '~> 1.0.0'

# This is used to store downloaded podcasts
pod 'RealmSwift'

# This is used to display a download progress ring for podcasts
pod 'UICircularProgressRing'

# This is used to display which podcast is currently active
pod 'ESTMusicIndicator'

# This is used to send and receive push notifications
pod 'OneSignal', '>= 2.6.2', '< 3.0'

# These are used to distribute and report analytics to Firebase dashboard
pod 'Firebase/Core'
pod 'Fabric'
pod 'Crashlytics'

# This is used to show that data is loading
pod 'SkeletonView'

# This is used to play Youtube videos within the App
pod 'YoutubeKit'

pod 'TestFairy'

pod 'FacebookCore'
pod 'FacebookLogin'
pod 'FacebookShare'

pod 'TransitionButton'
pod 'SwiftyStoreKit'


end



target 'OneSignalNotificationServiceExtension' do
    
    use_frameworks!
    
    pod 'OneSignal', '>= 2.6.2', '< 3.0'
    
end


