@react-native-firebase/app 18.5.0 → 18.6.0
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +6 -0
- package/android/build.gradle +1 -1
- package/android/src/reactnative/java/io/invertase/firebase/app/ReactNativeFirebaseVersion.java +1 -1
- package/ios/RNFBApp/RNFBVersion.m +1 -1
- package/lib/version.js +1 -1
- package/package.json +5 -5
- package/plugin/build/android/copyGoogleServices.js +1 -2
- package/plugin/build/ios/googleServicesPlist.js +1 -2
- package/plugin/tsconfig.json +1 -1
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.6.0](https://github.com/invertase/react-native-firebase/compare/v18.5.0...v18.6.0) (2023-10-26)
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- **app, sdk:** adopt firebase-android-sdk 32.4.0 ([63f1893](https://github.com/invertase/react-native-firebase/commit/63f1893849578bfab85241bf4458eb845a4d857f))
|
11
|
+
|
6
12
|
## [18.5.0](https://github.com/invertase/react-native-firebase/compare/v18.4.0...v18.5.0) (2023-09-22)
|
7
13
|
|
8
14
|
### Features
|
package/android/build.gradle
CHANGED
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '18.
|
2
|
+
module.exports = '18.6.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/app",
|
3
|
-
"version": "18.
|
3
|
+
"version": "18.6.0",
|
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",
|
@@ -57,11 +57,11 @@
|
|
57
57
|
"react-native": "*"
|
58
58
|
},
|
59
59
|
"dependencies": {
|
60
|
-
"opencollective-postinstall": "^2.0.
|
60
|
+
"opencollective-postinstall": "^2.0.3",
|
61
61
|
"superstruct": "^0.6.2"
|
62
62
|
},
|
63
63
|
"devDependencies": {
|
64
|
-
"expo": "^
|
64
|
+
"expo": "^49.0.16"
|
65
65
|
},
|
66
66
|
"peerDependenciesMeta": {
|
67
67
|
"expo": {
|
@@ -81,12 +81,12 @@
|
|
81
81
|
"minSdk": 19,
|
82
82
|
"targetSdk": 33,
|
83
83
|
"compileSdk": 33,
|
84
|
-
"firebase": "32.
|
84
|
+
"firebase": "32.4.0",
|
85
85
|
"firebaseCrashlyticsGradle": "2.9.9",
|
86
86
|
"firebasePerfGradle": "1.4.2",
|
87
87
|
"gmsGoogleServicesGradle": "4.3.15",
|
88
88
|
"playServicesAuth": "20.7.0"
|
89
89
|
}
|
90
90
|
},
|
91
|
-
"gitHead": "
|
91
|
+
"gitHead": "adbbd4171adb1e3c2306da1285520abbaf9313b8"
|
92
92
|
}
|
@@ -15,8 +15,7 @@ const withCopyAndroidGoogleServices = config => {
|
|
15
15
|
return (0, config_plugins_1.withDangerousMod)(config, [
|
16
16
|
'android',
|
17
17
|
async (config) => {
|
18
|
-
|
19
|
-
if (!((_a = config.android) === null || _a === void 0 ? void 0 : _a.googleServicesFile)) {
|
18
|
+
if (!config.android?.googleServicesFile) {
|
20
19
|
throw new Error('Path to google-services.json is not defined. Please specify the `expo.android.googleServicesFile` field in app.json.');
|
21
20
|
}
|
22
21
|
const srcPath = path_1.default.resolve(config.modRequest.projectRoot, config.android.googleServicesFile);
|
@@ -9,8 +9,7 @@ const fs_1 = __importDefault(require("fs"));
|
|
9
9
|
const path_1 = __importDefault(require("path"));
|
10
10
|
const withIosGoogleServicesFile = config => {
|
11
11
|
return (0, config_plugins_1.withXcodeProject)(config, config => {
|
12
|
-
|
13
|
-
if (!((_a = config.ios) === null || _a === void 0 ? void 0 : _a.googleServicesFile)) {
|
12
|
+
if (!config.ios?.googleServicesFile) {
|
14
13
|
throw new Error('Path to GoogleService-Info.plist is not defined. Please specify the `expo.ios.googleServicesFile` field in app.json.');
|
15
14
|
}
|
16
15
|
config.modResults = setGoogleServicesFile({
|
package/plugin/tsconfig.json
CHANGED