[v6] Implement ML-Kit Natural Language (#2117)

- Implement ML-Kit Natural Language (#2117)
 - Includes additional refactor changes across other modules for internals api reworking
This commit is contained in:
Mike Diarmid
2019-06-02 17:58:21 +01:00
committed by GitHub
parent d05473dc8e
commit 21a16867fe
199 changed files with 8507 additions and 4179 deletions

View File

@@ -0,0 +1,22 @@
require 'json'
package = JSON.parse(File.read('../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.platform = :ios, "10.0"
s.source_files = 'ios/**/*.{h,m}'
s.dependency 'React'
s.dependency 'Firebase/Core', '~> 5.20.2'
s.dependency 'RNFBApp'
s.static_framework = true
end