@react-native-firebase/perf 18.3.0 → 18.3.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,14 @@
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
+ ## [18.3.2](https://github.com/invertase/react-native-firebase/compare/v18.3.1...v18.3.2) (2023-09-02)
7
+
8
+ **Note:** Version bump only for package @react-native-firebase/perf
9
+
10
+ ## [18.3.1](https://github.com/invertase/react-native-firebase/compare/v18.3.0...v18.3.1) (2023-08-23)
11
+
12
+ **Note:** Version bump only for package @react-native-firebase/perf
13
+
6
14
  ## [18.3.0](https://github.com/invertase/react-native-firebase/compare/v18.2.0...v18.3.0) (2023-07-19)
7
15
 
8
16
  **Note:** Version bump only for package @react-native-firebase/perf
@@ -12,7 +12,7 @@ buildscript {
12
12
  }
13
13
 
14
14
  dependencies {
15
- classpath("com.android.tools.build:gradle:7.0.4")
15
+ classpath("com.android.tools.build:gradle:8.1.1")
16
16
  }
17
17
  }
18
18
  }
@@ -89,6 +89,11 @@ if (rootProject.ext && rootProject.ext.firebaseJson) {
89
89
  }
90
90
 
91
91
  android {
92
+ def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
93
+ if (agpVersion >= 7) {
94
+ namespace 'io.invertase.firebase.perf'
95
+ }
96
+
92
97
  defaultConfig {
93
98
  multiDexEnabled true
94
99
  manifestPlaceholders = [
@@ -100,10 +105,14 @@ android {
100
105
  disable 'GradleCompatible'
101
106
  abortOnError false
102
107
  }
103
- compileOptions {
104
- sourceCompatibility JavaVersion.VERSION_1_8
105
- targetCompatibility JavaVersion.VERSION_1_8
108
+
109
+ if (agpVersion < 8) {
110
+ compileOptions {
111
+ sourceCompatibility JavaVersion.VERSION_11
112
+ targetCompatibility JavaVersion.VERSION_11
113
+ }
106
114
  }
115
+
107
116
  sourceSets {
108
117
  main {
109
118
  java.srcDirs = ['src/main/java', 'src/reactnative/java']
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '18.3.0';
2
+ module.exports = '18.3.2';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/perf",
3
- "version": "18.3.0",
3
+ "version": "18.3.2",
4
4
  "author": "Invertase <oss@invertase.io> (http://invertase.io)",
5
5
  "description": "React Native Firebase - React Native Firebase provides native integration with Performance Monitoring to gain insight into key performance characteristics within your React Native application.",
6
6
  "main": "lib/index.js",
@@ -29,7 +29,7 @@
29
29
  "performance monitoring"
30
30
  ],
31
31
  "peerDependencies": {
32
- "@react-native-firebase/app": "18.3.0",
32
+ "@react-native-firebase/app": "18.3.2",
33
33
  "expo": ">=47.0.0"
34
34
  },
35
35
  "devDependencies": {
@@ -43,5 +43,5 @@
43
43
  "publishConfig": {
44
44
  "access": "public"
45
45
  },
46
- "gitHead": "cca7053a12ea04c8476f880bd2220f44ee4ae17a"
46
+ "gitHead": "f323891622441c9d59a25ef37b19534db512b372"
47
47
  }