[v6] Implement Dynamic Links (#2103)

(coverage + tests to follow in another PR)
This commit is contained in:
Mike Diarmid
2019-06-07 13:28:07 +01:00
committed by GitHub
parent e5437aa568
commit 978b298f94
71 changed files with 7284 additions and 1267 deletions

View File

@@ -1,5 +1,5 @@
require 'json'
package = JSON.parse(File.read('../package.json'))
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = "RNFB_Template_"
@@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.authors = "Invertase Limited"
s.source = { :git => "https://github.com/invertase/react-native-firebase.git", :tag => "v#{s.version}" }
s.social_media_url = 'http://twitter.com/invertaseio'
s.platform = :ios, "10.0"
s.ios.deployment_target = "9.0"
s.source_files = 'ios/**/*.{h,m}'
s.dependency 'React'
s.dependency 'Firebase/Core', '~> 5.20.2'