@react-native-firebase/in-app-messaging 21.14.0 → 22.0.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 +7 -0
- package/android/build.gradle +6 -6
- package/lib/version.js +1 -1
- package/package.json +6 -5
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,13 @@
|
|
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
|
+
## [22.0.0](https://github.com/invertase/react-native-firebase/compare/v21.14.0...v22.0.0) (2025-04-25)
|
7
|
+
|
8
|
+
### Bug Fixes
|
9
|
+
|
10
|
+
- **android:** use `=` assignment vs deprecated space-assignment ([39c2ecb](https://github.com/invertase/react-native-firebase/commit/39c2ecb0069a8a5a65b04fb7f86ccecf83273868))
|
11
|
+
- enable provenance signing during publish ([4535f0d](https://github.com/invertase/react-native-firebase/commit/4535f0d5756c89aeb8f8e772348c71d8176348be))
|
12
|
+
|
6
13
|
## [21.14.0](https://github.com/invertase/react-native-firebase/compare/v21.13.0...v21.14.0) (2025-04-14)
|
7
14
|
|
8
15
|
**Note:** Version bump only for package @react-native-firebase/in-app-messaging
|
package/android/build.gradle
CHANGED
@@ -84,11 +84,11 @@ if (rootProject.ext && rootProject.ext.firebaseJson) {
|
|
84
84
|
android {
|
85
85
|
def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
|
86
86
|
if (agpVersion >= 7) {
|
87
|
-
namespace 'io.invertase.firebase.fiam'
|
87
|
+
namespace = 'io.invertase.firebase.fiam'
|
88
88
|
}
|
89
89
|
|
90
90
|
defaultConfig {
|
91
|
-
multiDexEnabled true
|
91
|
+
multiDexEnabled = true
|
92
92
|
manifestPlaceholders = [
|
93
93
|
firebaseJsonAutoInitEnabled: dataCollectionEnabled
|
94
94
|
]
|
@@ -96,18 +96,18 @@ android {
|
|
96
96
|
|
97
97
|
buildFeatures {
|
98
98
|
// AGP 8 no longer builds config by default
|
99
|
-
buildConfig true
|
99
|
+
buildConfig = true
|
100
100
|
}
|
101
101
|
|
102
102
|
lintOptions {
|
103
103
|
disable 'GradleCompatible'
|
104
|
-
abortOnError false
|
104
|
+
abortOnError = false
|
105
105
|
}
|
106
106
|
|
107
107
|
if (agpVersion < 8) {
|
108
108
|
compileOptions {
|
109
|
-
sourceCompatibility JavaVersion.VERSION_11
|
110
|
-
targetCompatibility JavaVersion.VERSION_11
|
109
|
+
sourceCompatibility = JavaVersion.VERSION_11
|
110
|
+
targetCompatibility = JavaVersion.VERSION_11
|
111
111
|
}
|
112
112
|
}
|
113
113
|
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '
|
2
|
+
module.exports = '22.0.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/in-app-messaging",
|
3
|
-
"version": "
|
3
|
+
"version": "22.0.0",
|
4
4
|
"author": "Invertase <oss@invertase.io> (http://invertase.io)",
|
5
5
|
"description": "React Native Firebase - Firebase In-App Messaging helps you engage your app's active users by sending them targeted, contextual messages that encourage them to use key app features. React Native Firebase provides support for both native Android & iOS integration with a simple JavaScript API.",
|
6
6
|
"main": "lib/index.js",
|
@@ -27,11 +27,12 @@
|
|
27
27
|
"inAppMessaging"
|
28
28
|
],
|
29
29
|
"peerDependencies": {
|
30
|
-
"@react-native-firebase/analytics": "
|
31
|
-
"@react-native-firebase/app": "
|
30
|
+
"@react-native-firebase/analytics": "22.0.0",
|
31
|
+
"@react-native-firebase/app": "22.0.0"
|
32
32
|
},
|
33
33
|
"publishConfig": {
|
34
|
-
"access": "public"
|
34
|
+
"access": "public",
|
35
|
+
"provenance": true
|
35
36
|
},
|
36
|
-
"gitHead": "
|
37
|
+
"gitHead": "e9fee87b413c90e243347d5c60272f07f41d99b8"
|
37
38
|
}
|