@react-native-firebase/app 14.0.1 → 14.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,16 @@
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
5
5
|
|
6
|
+
# [14.1.0](https://github.com/invertase/react-native-firebase/compare/v14.0.1...v14.1.0) (2021-12-18)
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- **app, android:** firebase-android-sdk 29.0.3 to fix underlying NPE in 29.0.2 ([#5946](https://github.com/invertase/react-native-firebase/issues/5946)) ([051f4a6](https://github.com/invertase/react-native-firebase/commit/051f4a66d64db42f1c615580e185eaf00660fbc1))
|
11
|
+
|
12
|
+
### Features
|
13
|
+
|
14
|
+
- **analytics, config:** expose automatic screenview reporting toggle ([#5948](https://github.com/invertase/react-native-firebase/issues/5948)) ([8836c01](https://github.com/invertase/react-native-firebase/commit/8836c01dcfa2f478f973a1a54253509c3368d963))
|
15
|
+
|
6
16
|
## [14.0.1](https://github.com/invertase/react-native-firebase/compare/v14.0.0...v14.0.1) (2021-12-15)
|
7
17
|
|
8
18
|
### Bug Fixes
|
package/firebase-schema.json
CHANGED
@@ -25,6 +25,10 @@
|
|
25
25
|
"description": "If you wish to disable collection of SSAID (Settings.Secure.ANDROID_ID) in your Android app,.\n This cannot be altered at runtime once set in the config.",
|
26
26
|
"type": "boolean"
|
27
27
|
},
|
28
|
+
"google_analytics_automatic_screen_reporting_enabled": {
|
29
|
+
"description": "If you wish to disable automatic screen reporting in your app.\n This cannot be altered at runtime once set in the config.",
|
30
|
+
"type": "boolean"
|
31
|
+
},
|
28
32
|
"analytics_default_allow_ad_personalization_signals": {
|
29
33
|
"description": "Configure whether a user's Analytics data may be used for personalized advertising in other products.\n If set, may be overridden at runtime by calling setUserProperty on the key 'allow_personalized_ads'",
|
30
34
|
"type": "boolean"
|
@@ -54,7 +58,7 @@
|
|
54
58
|
"type": "boolean"
|
55
59
|
},
|
56
60
|
"crashlytics_javascript_exception_handler_chaining_enabled": {
|
57
|
-
"description": "By default React Native Firebase Crashlytics will preserve existing global javascript-level
|
61
|
+
"description": "By default React Native Firebase Crashlytics will preserve existing global javascript-level unhandled exception handlers by reporting to Crashlytics then passing the exception on for further handling. This could lead to duplicate reports, for example a fatal javascript-level report and a fatal native level report for the same crash. Set to false to terminate error handling after logging the javascript-level crash.",
|
58
62
|
"type": "boolean"
|
59
63
|
},
|
60
64
|
"crashlytics_ndk_enabled": {
|
package/ios_config.sh
CHANGED
@@ -126,6 +126,14 @@ if [[ ${_SEARCH_RESULT} ]]; then
|
|
126
126
|
_PLIST_ENTRY_VALUES+=("$(jsonBoolToYesNo "$_ANALYTICS_PERSONALIZATION")")
|
127
127
|
fi
|
128
128
|
|
129
|
+
# config.google_analytics_automatic_screen_reporting_enabled
|
130
|
+
_ANALYTICS_AUTO_SCREEN_REPORTING=$(getFirebaseJsonKeyValue "$_JSON_OUTPUT_RAW" "google_analytics_automatic_screen_reporting_enabled")
|
131
|
+
if [[ $_ANALYTICS_AUTO_SCREEN_REPORTING ]]; then
|
132
|
+
_PLIST_ENTRY_KEYS+=("FirebaseAutomaticScreenReportingEnabled")
|
133
|
+
_PLIST_ENTRY_TYPES+=("bool")
|
134
|
+
_PLIST_ENTRY_VALUES+=("$(jsonBoolToYesNo "$_ANALYTICS_AUTO_SCREEN_REPORTING")")
|
135
|
+
fi
|
136
|
+
|
129
137
|
# config.perf_auto_collection_enabled
|
130
138
|
_PERF_AUTO_COLLECTION=$(getFirebaseJsonKeyValue "$_JSON_OUTPUT_RAW" "perf_auto_collection_enabled")
|
131
139
|
if [[ $_PERF_AUTO_COLLECTION ]]; then
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// generated by genversion
|
2
|
-
module.exports = '14.0
|
2
|
+
module.exports = '14.1.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/app",
|
3
|
-
"version": "14.0
|
3
|
+
"version": "14.1.0",
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
5
5
|
"description": "A well tested, feature rich Firebase implementation for React Native, supporting iOS & Android. Individual module support for Admob, Analytics, Auth, Crash Reporting, Cloud Firestore, Database, Dynamic Links, Functions, Messaging (FCM), Remote Config, Storage and more.",
|
6
6
|
"main": "lib/index.js",
|
@@ -72,12 +72,12 @@
|
|
72
72
|
"targetSdk": 31,
|
73
73
|
"compileSdk": 31,
|
74
74
|
"buildTools": "30.0.3",
|
75
|
-
"firebase": "29.0.
|
75
|
+
"firebase": "29.0.3",
|
76
76
|
"firebaseCrashlyticsGradle": "2.8.1",
|
77
77
|
"firebasePerfGradle": "1.4.0",
|
78
78
|
"gmsGoogleServicesGradle": "4.3.10",
|
79
79
|
"playServicesAuth": "20.0.0"
|
80
80
|
}
|
81
81
|
},
|
82
|
-
"gitHead": "
|
82
|
+
"gitHead": "8efda506474b1757f6a0537495a1de581d372299"
|
83
83
|
}
|