mirror of
https://github.com/zhigang1992/react-native-firebase.git
synced 2026-04-21 10:34:39 +08:00
[crashlytics] Fixes: #1643, #1848, #1964, #1920, #1884, #1783, #1966, #1940, #1447 Features/Bugs Todo: Capture JS Exceptions with stack traces automatically Capture Unhandled Promise Rejections with stack traces automatically [Android] .crash() not captured in debug due to RN RedBox; see #1921 Support advanced user identifier features [Android] Enable Crashlyics NDK reporting by default (gist) Support toggling native crash logging off/on (e.g. disable in DEV) Support toggling JS crash logging off/on (e.g. disable in DEV) [ios] Static framework support for all modules [ios] Implement CocoaPods Firebase RN modules auto-loader script Implement firebase.json config loader; Android & iOS [tests] Fix false positive tests that catch errors (tests did not check that errors actually threw) [android] Cleanup manifest permissions for all modules [android] Implement Content provider base class [android] Investigate/fix issue where setDataCollectionDefaultEnabled is false by default in Firebase - it disables Crashlytics reporting
23 lines
1004 B
Ruby
23 lines
1004 B
Ruby
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 = 'RNFB_Template_/**/*.{h,m}'
|
|
s.dependency 'React'
|
|
s.dependency 'Firebase/Core', '~> 5.17.0'
|
|
s.dependency 'RNFBApp'
|
|
s.static_framework = true
|
|
end
|