[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'

View File

@@ -0,0 +1,22 @@
require 'json'
package = JSON.parse(File.read(File.join(__dir__, '..', 'package.json')))
Pod::Spec.new do |s|
s.name = "RNFB_Template_"
s.version = package["version"]
s.description = package["description"]
s.summary = <<-DESC
A well tested feature rich Firebase implementation for React Native, supporting iOS & Android.
DESC
s.homepage = "http://invertase.io/oss/react-native-firebase"
s.license = package['license']
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.ios.deployment_target = "9.0"
s.source_files = 'RNFB_Template_/**/*.{h,m}'
s.dependency 'React'
s.dependency 'Firebase/Core', '~> 5.20.2'
s.dependency 'RNFBApp'
s.static_framework = true
end

View File

@@ -22,7 +22,7 @@
"_template_"
],
"peerDependencies": {
"@react-native-firebase/app": "_VERSION_"
"@react-native-firebase/app": "*"
},
"dependencies": {
"@react-native-firebase/app-types": "_VERSION_",