@react-native-firebase/analytics 15.1.1 → 15.2.0

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,10 @@
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
+ # [15.2.0](https://github.com/invertase/react-native-firebase/compare/v15.1.1...v15.2.0) (2022-07-21)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/analytics
9
+
6
10
  ## [15.1.1](https://github.com/invertase/react-native-firebase/compare/v15.1.0...v15.1.1) (2022-06-28)
7
11
 
8
12
  **Note:** Version bump only for package @react-native-firebase/analytics
@@ -44,8 +44,10 @@ Pod::Spec.new do |s|
44
44
 
45
45
  s.dependency 'Firebase/AnalyticsWithoutAdIdSupport', firebase_sdk_version
46
46
  else
47
- Pod::UI.puts "#{s.name}: Using default Firebase/Analytics with Ad Ids. May require App Tracking Transparency. Not allowed for Kids apps."
48
- Pod::UI.puts "#{s.name}: You may set variable `$RNFirebaseAnalyticsWithoutAdIdSupport=true` in Podfile to use analytics without ad ids."
47
+ if !defined?($RNFirebaseAnalyticsWithoutAdIdSupport)
48
+ Pod::UI.puts "#{s.name}: Using default Firebase/Analytics with Ad Ids. May require App Tracking Transparency. Not allowed for Kids apps."
49
+ Pod::UI.puts "#{s.name}: You may set variable `$RNFirebaseAnalyticsWithoutAdIdSupport=true` in Podfile to use analytics without ad ids."
50
+ end
49
51
  s.dependency 'Firebase/Analytics', firebase_sdk_version
50
52
  end
51
53
 
@@ -35,7 +35,6 @@ def firebaseBomVersion = appPackageJson['sdkVersions']['android']['firebase']
35
35
  def jsonMinSdk = appPackageJson['sdkVersions']['android']['minSdk']
36
36
  def jsonTargetSdk = appPackageJson['sdkVersions']['android']['targetSdk']
37
37
  def jsonCompileSdk = appPackageJson['sdkVersions']['android']['compileSdk']
38
- def jsonBuildTools = appPackageJson['sdkVersions']['android']['buildTools']
39
38
  def coreVersionDetected = appPackageJson['version']
40
39
  def coreVersionRequired = packageJson['peerDependencies'][appPackageJson['name']]
41
40
  // Only log after build completed so log warning appears at the end
@@ -52,9 +51,6 @@ project.ext {
52
51
  minSdk : jsonMinSdk,
53
52
  targetSdk : jsonTargetSdk,
54
53
  compileSdk: jsonCompileSdk,
55
- // optional as gradle.buildTools comes with one by default
56
- // overriding here though to match the version RN uses
57
- buildTools: jsonBuildTools
58
54
  ],
59
55
 
60
56
  firebase: [
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '15.1.1';
2
+ module.exports = '15.2.0';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/analytics",
3
- "version": "15.1.1",
3
+ "version": "15.2.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": "15.1.1"
25
+ "@react-native-firebase/app": "15.2.0"
26
26
  },
27
27
  "publishConfig": {
28
28
  "access": "public"
29
29
  },
30
- "gitHead": "8d469f19b9faec54c492f83c0a2dba6a52815da3"
30
+ "gitHead": "8fb859fb000d5c2c6bbb81dffc685e94ef1ba350"
31
31
  }