@react-native-firebase/app 18.3.1 → 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,12 @@
|
|
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
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- **app, sdks:** adopt firebase-android-sdk 32.2.3 ([129d6ef](https://github.com/invertase/react-native-firebase/commit/129d6ef1eb1b45be3390687a002bddfe87386fa3))
|
11
|
+
|
6
12
|
## [18.3.1](https://github.com/invertase/react-native-firebase/compare/v18.3.0...v18.3.1) (2023-08-23)
|
7
13
|
|
8
14
|
### Bug Fixes
|
package/android/build.gradle
CHANGED
@@ -11,7 +11,7 @@ buildscript {
|
|
11
11
|
}
|
12
12
|
|
13
13
|
dependencies {
|
14
|
-
classpath("com.android.tools.build:gradle:
|
14
|
+
classpath("com.android.tools.build:gradle:8.1.1")
|
15
15
|
}
|
16
16
|
}
|
17
17
|
}
|
@@ -59,19 +59,32 @@ if (rootProject.ext && rootProject.ext.firebaseJson) {
|
|
59
59
|
}
|
60
60
|
|
61
61
|
android {
|
62
|
+
def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
|
63
|
+
if (agpVersion >= 7) {
|
64
|
+
namespace 'io.invertase.firebase'
|
65
|
+
}
|
66
|
+
|
62
67
|
defaultConfig {
|
63
68
|
multiDexEnabled true
|
64
69
|
manifestPlaceholders = [
|
65
70
|
firebaseJsonDataCollectionDefaultEnabled: dataCollectionDefaultEnabled
|
66
71
|
]
|
67
72
|
}
|
73
|
+
|
74
|
+
buildFeatures {
|
75
|
+
// AGP 8 no longer builds config by default
|
76
|
+
buildConfig true
|
77
|
+
}
|
78
|
+
|
68
79
|
lintOptions {
|
69
80
|
disable 'GradleCompatible'
|
70
81
|
abortOnError false
|
71
82
|
}
|
72
|
-
|
73
|
-
|
74
|
-
|
83
|
+
if (agpVersion < 8) {
|
84
|
+
compileOptions {
|
85
|
+
sourceCompatibility JavaVersion.VERSION_11
|
86
|
+
targetCompatibility JavaVersion.VERSION_11
|
87
|
+
}
|
75
88
|
}
|
76
89
|
|
77
90
|
sourceSets {
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '18.3.
|
2
|
+
module.exports = '18.3.2';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/app",
|
3
|
-
"version": "18.3.
|
3
|
+
"version": "18.3.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",
|
@@ -81,12 +81,12 @@
|
|
81
81
|
"minSdk": 19,
|
82
82
|
"targetSdk": 33,
|
83
83
|
"compileSdk": 33,
|
84
|
-
"firebase": "32.2.
|
85
|
-
"firebaseCrashlyticsGradle": "2.9.
|
84
|
+
"firebase": "32.2.3",
|
85
|
+
"firebaseCrashlyticsGradle": "2.9.9",
|
86
86
|
"firebasePerfGradle": "1.4.2",
|
87
87
|
"gmsGoogleServicesGradle": "4.3.15",
|
88
88
|
"playServicesAuth": "20.6.0"
|
89
89
|
}
|
90
90
|
},
|
91
|
-
"gitHead": "
|
91
|
+
"gitHead": "f323891622441c9d59a25ef37b19534db512b372"
|
92
92
|
}
|