@react-native-firebase/perf 18.3.1 → 18.4.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +8 -0
- package/android/build.gradle +13 -4
- package/lib/version.js +1 -1
- package/package.json +3 -3
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.4.0](https://github.com/invertase/react-native-firebase/compare/v18.3.2...v18.4.0) (2023-09-11)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/perf
|
9
|
+
|
10
|
+
## [18.3.2](https://github.com/invertase/react-native-firebase/compare/v18.3.1...v18.3.2) (2023-09-02)
|
11
|
+
|
12
|
+
**Note:** Version bump only for package @react-native-firebase/perf
|
13
|
+
|
6
14
|
## [18.3.1](https://github.com/invertase/react-native-firebase/compare/v18.3.0...v18.3.1) (2023-08-23)
|
7
15
|
|
8
16
|
**Note:** Version bump only for package @react-native-firebase/perf
|
package/android/build.gradle
CHANGED
@@ -12,7 +12,7 @@ buildscript {
|
|
12
12
|
}
|
13
13
|
|
14
14
|
dependencies {
|
15
|
-
classpath("com.android.tools.build:gradle:
|
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
|
-
|
104
|
-
|
105
|
-
|
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.
|
2
|
+
module.exports = '18.4.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/perf",
|
3
|
-
"version": "18.
|
3
|
+
"version": "18.4.0",
|
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.
|
32
|
+
"@react-native-firebase/app": "18.4.0",
|
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": "
|
46
|
+
"gitHead": "5f6460a87970d8b6013530de980bc760ddc70f90"
|
47
47
|
}
|