@react-native-firebase/app 14.0.1 → 14.2.2

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,30 @@
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.2.2](https://github.com/invertase/react-native-firebase/compare/v14.2.1...v14.2.2) (2022-01-06)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **app, android:** minSdk should be 19 to match firebase-android-sdk ([#5984](https://github.com/invertase/react-native-firebase/issues/5984)) ([8015779](https://github.com/invertase/react-native-firebase/commit/8015779035835e03746754a1f28b16bd83407376))
11
+
12
+ ## [14.2.1](https://github.com/invertase/react-native-firebase/compare/v14.2.0...v14.2.1) (2021-12-31)
13
+
14
+ **Note:** Version bump only for package @react-native-firebase/app
15
+
16
+ # [14.2.0](https://github.com/invertase/react-native-firebase/compare/v14.1.0...v14.2.0) (2021-12-31)
17
+
18
+ **Note:** Version bump only for package @react-native-firebase/app
19
+
20
+ # [14.1.0](https://github.com/invertase/react-native-firebase/compare/v14.0.1...v14.1.0) (2021-12-18)
21
+
22
+ ### Bug Fixes
23
+
24
+ - **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))
25
+
26
+ ### Features
27
+
28
+ - **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))
29
+
6
30
  ## [14.0.1](https://github.com/invertase/react-native-firebase/compare/v14.0.0...v14.0.1) (2021-12-15)
7
31
 
8
32
  ### Bug Fixes
@@ -18,5 +18,5 @@ package io.invertase.firebase.app;
18
18
  */
19
19
  // generated file - do not modify or commit
20
20
  public class ReactNativeFirebaseVersion {
21
- public static String VERSION = "14.0.1";
21
+ public static String VERSION = "14.2.2";
22
22
  }
@@ -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 uhandled 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.",
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": {
@@ -18,4 +18,4 @@
18
18
  #import "RCTVersion.h"
19
19
 
20
20
  // generated file - do not modify or commit
21
- NSString* const RNFBVersionString = @"14.0.1";
21
+ NSString* const RNFBVersionString = @"14.2.2";
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.1';
2
+ module.exports = '14.2.2';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/app",
3
- "version": "14.0.1",
3
+ "version": "14.2.2",
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",
@@ -56,7 +56,7 @@
56
56
  "react-native": "*"
57
57
  },
58
58
  "dependencies": {
59
- "@expo/config-plugins": "^4.0.12",
59
+ "@expo/config-plugins": "^4.0.15",
60
60
  "opencollective-postinstall": "^2.0.1",
61
61
  "superstruct": "^0.6.2"
62
62
  },
@@ -68,16 +68,16 @@
68
68
  "firebase": "8.10.0"
69
69
  },
70
70
  "android": {
71
- "minSdk": 21,
71
+ "minSdk": 19,
72
72
  "targetSdk": 31,
73
73
  "compileSdk": 31,
74
74
  "buildTools": "30.0.3",
75
- "firebase": "29.0.2",
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": "c2f5b82e487ba3c05e10ccafaa8cc09b43cb5811"
82
+ "gitHead": "7b0de31e45be9ca7571583e77d1b06c3088df053"
83
83
  }