@react-native-firebase/analytics 13.1.0 → 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,26 @@
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
+ ### Features
9
+
10
+ - **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))
11
+
12
+ ## [14.0.1](https://github.com/invertase/react-native-firebase/compare/v14.0.0...v14.0.1) (2021-12-15)
13
+
14
+ **Note:** Version bump only for package @react-native-firebase/analytics
15
+
16
+ # [14.0.0](https://github.com/invertase/react-native-firebase/compare/v13.1.1...v14.0.0) (2021-12-14)
17
+
18
+ **Note:** Version bump only for package @react-native-firebase/analytics
19
+
20
+ ## [13.1.1](https://github.com/invertase/react-native-firebase/compare/v13.1.0...v13.1.1) (2021-12-14)
21
+
22
+ ### Bug Fixes
23
+
24
+ - **deps:** AGP7.0.4, firebase-android-sdk 29.0.2, javascript deps ([55d0a36](https://github.com/invertase/react-native-firebase/commit/55d0a36a0addc54e347f26bb8ee88bb38b0fa4a6))
25
+
6
26
  # [13.1.0](https://github.com/invertase/react-native-firebase/compare/v13.0.1...v13.1.0) (2021-12-02)
7
27
 
8
28
  **Note:** Version bump only for package @react-native-firebase/analytics
@@ -12,7 +12,7 @@ buildscript {
12
12
  }
13
13
 
14
14
  dependencies {
15
- classpath("com.android.tools.build:gradle:7.0.3")
15
+ classpath("com.android.tools.build:gradle:7.0.4")
16
16
  }
17
17
  }
18
18
  }
@@ -70,6 +70,7 @@ String collectionDeactivated = 'false'
70
70
  String adidEnabled = 'true'
71
71
  String ssaidEnabled = 'true'
72
72
  String personalizationEnabled = 'true'
73
+ String automaticScreenReportingEnabled = 'true'
73
74
 
74
75
  // If nothing is defined, data collection defaults to true
75
76
  String dataCollectionEnabled = 'true'
@@ -102,6 +103,9 @@ if (rootProject.ext && rootProject.ext.firebaseJson) {
102
103
  if (rnfbConfig.isFlagEnabled('analytics_default_allow_ad_personalization_signals', true) == false) {
103
104
  personalizationEnabled = 'false'
104
105
  }
106
+ if (rnfbConfig.isFlagEnabled('google_analytics_automatic_screen_reporting_enabled', true) == false) {
107
+ automaticScreenReportingEnabled = 'false'
108
+ }
105
109
  }
106
110
 
107
111
  android {
@@ -112,7 +116,8 @@ android {
112
116
  firebaseJsonCollectionDeactivated: collectionDeactivated,
113
117
  firebaseJsonAdidEnabled: adidEnabled,
114
118
  firebaseJsonSsaidEnabled: ssaidEnabled,
115
- firebaseJsonPersonalizationEnabled: personalizationEnabled
119
+ firebaseJsonPersonalizationEnabled: personalizationEnabled,
120
+ firebaseJsonAutomaticScreenReportingEnabled: automaticScreenReportingEnabled
116
121
  ]
117
122
  }
118
123
  lintOptions {
@@ -12,5 +12,6 @@
12
12
  <meta-data android:name="google_analytics_adid_collection_enabled" android:value="${firebaseJsonAdidEnabled}" />
13
13
  <meta-data android:name="google_analytics_ssaid_collection_enabled" android:value="${firebaseJsonSsaidEnabled}" />
14
14
  <meta-data android:name="google_analytics_default_allow_ad_personalization_signals" android:value="${firebaseJsonPersonalizationEnabled}" />
15
+ <meta-data android:name="google_analytics_automatic_screen_reporting_enabled" android:value="${firebaseJsonAutomaticScreenReportingEnabled}" />
15
16
  </application>
16
17
  </manifest>
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // generated by genversion
2
- module.exports = '13.1.0';
2
+ module.exports = '14.1.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/analytics",
3
- "version": "13.1.0",
3
+ "version": "14.1.0",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - The analytics module provides out of the box support with Google Analytics for Firebase. Integration with the Android & iOS allows for in-depth analytical insight reporting, such as device information, location, user actions and more.",
6
6
  "main": "lib/index.js",
@@ -22,10 +22,10 @@
22
22
  "analytics"
23
23
  ],
24
24
  "peerDependencies": {
25
- "@react-native-firebase/app": "13.1.0"
25
+ "@react-native-firebase/app": "14.1.0"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "gitHead": "0a9621b1ad2d6592de9906157d121c8ba5460a75"
30
+ "gitHead": "8efda506474b1757f6a0537495a1de581d372299"
31
31
  }