react-native-fcm.podspec 653 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
require "json"
package = JSON.parse(File.read('package.json'))

Pod::Spec.new do |s|
  s.name          = package['name']
  s.version       = package['version']
  s.summary       = package['description']
  s.author        = "Libin Lu"
  s.license       = package['license']
  s.requires_arc  = true
  s.homepage      = "https://github.com/evollu/react-native-fcm"
  s.source        = { :git => 'https://github.com/evollu/react-native-fcm.git' }
  s.platform      = :ios, '8.0'
  s.source_files  = "ios/*.{h,m}"
15
  s.public_header_files = ['ios/RNFIRMessaging.h']
16
  s.static_framework = true
17

18
  s.dependency "React"
19 20
  s.dependency "Firebase/Messaging"
end