@react-native-firebase/app 23.5.0 → 23.6.0
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 +11 -0
- package/android/build.gradle +2 -1
- package/android/src/main/java/io/invertase/firebase/common/UniversalFirebasePreferences.java +2 -0
- 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 +8 -8
- package/plugin/tsconfig.tsbuildinfo +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,17 @@
|
|
|
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
|
+
## [23.6.0](https://github.com/invertase/react-native-firebase/compare/v23.5.0...v23.6.0) (2025-12-08)
|
|
7
|
+
|
|
8
|
+
### Features
|
|
9
|
+
|
|
10
|
+
- **app, ios:** adopt firebase-ios-sdk 12.5.0 ([acc665c](https://github.com/invertase/react-native-firebase/commit/acc665ced443e0d245f30b54eb85e72bcc3d7bd2))
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
- firebase-ios-sdk 12.6.0 / firebase-js-sdk 12.6.0 / firebase-android-sdk 34.6.0 ([dacdfa2](https://github.com/invertase/react-native-firebase/commit/dacdfa2b5961259c93ea948472be4b51ac78b1c5))
|
|
15
|
+
- **messaging, android:** properly remove remote message from prefs ([336901b](https://github.com/invertase/react-native-firebase/commit/336901b00f0553f57fa18ce416f513f915c9a8ed))
|
|
16
|
+
|
|
6
17
|
## [23.5.0](https://github.com/invertase/react-native-firebase/compare/v23.4.1...v23.5.0) (2025-10-30)
|
|
7
18
|
|
|
8
19
|
### Bug Fixes
|
package/android/build.gradle
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import com.android.Version
|
|
1
2
|
import io.invertase.gradle.common.PackageJson
|
|
2
3
|
import org.gradle.internal.jvm.Jvm
|
|
3
4
|
|
|
@@ -60,7 +61,7 @@ if (rootProject.ext && rootProject.ext.firebaseJson) {
|
|
|
60
61
|
}
|
|
61
62
|
|
|
62
63
|
android {
|
|
63
|
-
def agpVersion =
|
|
64
|
+
def agpVersion = Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
|
|
64
65
|
if (agpVersion >= 7) {
|
|
65
66
|
namespace = 'io.invertase.firebase'
|
|
66
67
|
}
|
package/android/src/main/java/io/invertase/firebase/common/UniversalFirebasePreferences.java
CHANGED
|
@@ -74,6 +74,8 @@ public class UniversalFirebasePreferences {
|
|
|
74
74
|
getPreferences().edit().clear().apply();
|
|
75
75
|
}
|
|
76
76
|
|
|
77
|
+
// Note the caller is responsible for calling apply() or commit() on the
|
|
78
|
+
// returned SharedPreferences.Editor object for the remove to take affect
|
|
77
79
|
public SharedPreferences.Editor remove(String key) {
|
|
78
80
|
return getPreferences().edit().remove(key);
|
|
79
81
|
}
|
package/lib/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
module.exports = '23.
|
|
2
|
+
module.exports = '23.6.0';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@react-native-firebase/app",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.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
|
-
"firebase": "12.
|
|
60
|
+
"firebase": "12.6.0"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@react-native-async-storage/async-storage": "^2.2.0",
|
|
64
|
-
"expo": "^
|
|
64
|
+
"expo": "^54.0.27"
|
|
65
65
|
},
|
|
66
66
|
"peerDependenciesMeta": {
|
|
67
67
|
"expo": {
|
|
@@ -74,7 +74,7 @@
|
|
|
74
74
|
},
|
|
75
75
|
"sdkVersions": {
|
|
76
76
|
"ios": {
|
|
77
|
-
"firebase": "12.
|
|
77
|
+
"firebase": "12.6.0",
|
|
78
78
|
"iosTarget": "15.0",
|
|
79
79
|
"macosTarget": "10.15",
|
|
80
80
|
"tvosTarget": "15.0"
|
|
@@ -83,13 +83,13 @@
|
|
|
83
83
|
"minSdk": 23,
|
|
84
84
|
"targetSdk": 34,
|
|
85
85
|
"compileSdk": 34,
|
|
86
|
-
"firebase": "34.
|
|
86
|
+
"firebase": "34.6.0",
|
|
87
87
|
"firebaseCrashlyticsGradle": "3.0.6",
|
|
88
|
-
"firebasePerfGradle": "2.0.
|
|
88
|
+
"firebasePerfGradle": "2.0.2",
|
|
89
89
|
"gmsGoogleServicesGradle": "4.4.4",
|
|
90
90
|
"playServicesAuth": "21.4.0",
|
|
91
|
-
"firebaseAppDistributionGradle": "5.
|
|
91
|
+
"firebaseAppDistributionGradle": "5.2.0"
|
|
92
92
|
}
|
|
93
93
|
},
|
|
94
|
-
"gitHead": "
|
|
94
|
+
"gitHead": "748e89f9bfcdfbee971c627cd8a698963ba09f33"
|
|
95
95
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"root":["./src/index.ts","./src/android/applyPlugin.ts","./src/android/buildscriptDependency.ts","./src/android/constants.ts","./src/android/copyGoogleServices.ts","./src/android/index.ts","./src/ios/appDelegate.ts","./src/ios/googleServicesPlist.ts","./src/ios/index.ts"],"version":"5.9.
|
|
1
|
+
{"root":["./src/index.ts","./src/android/applyPlugin.ts","./src/android/buildscriptDependency.ts","./src/android/constants.ts","./src/android/copyGoogleServices.ts","./src/android/index.ts","./src/ios/appDelegate.ts","./src/ios/googleServicesPlist.ts","./src/ios/index.ts"],"version":"5.9.3"}
|