@react-native-firebase/app 18.8.0 → 18.9.0
Sign up to get free protection for your applications and to get access to all the features.
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.9.0](https://github.com/invertase/react-native-firebase/compare/v18.8.0...v18.9.0) (2024-02-21)
|
7
|
+
|
8
|
+
### Features
|
9
|
+
|
10
|
+
- **analytics:** add setConsent implementation ([#7629](https://github.com/invertase/react-native-firebase/issues/7629)) ([7816985](https://github.com/invertase/react-native-firebase/commit/78169854f16a2715f5d2657ab08f54d5a4b05281))
|
11
|
+
|
6
12
|
## [18.8.0](https://github.com/invertase/react-native-firebase/compare/v18.7.3...v18.8.0) (2024-01-25)
|
7
13
|
|
8
14
|
### Features
|
package/firebase-schema.json
CHANGED
@@ -33,6 +33,18 @@
|
|
33
33
|
"description": "For your convenience, on iOS the SDK automatically registers your app with Apple for ad network attribution with SKAdNetwork.\nDefaults to true, include this key as false to disable.",
|
34
34
|
"type": "boolean"
|
35
35
|
},
|
36
|
+
"analytics_default_allow_analytics_storage": {
|
37
|
+
"description": "Enables storage (such as app identifiers) related to analytics, e.g. visit duration.",
|
38
|
+
"type": "boolean"
|
39
|
+
},
|
40
|
+
"analytics_default_allow_ad_storage": {
|
41
|
+
"description": "Enables storage (such as device identifiers) related to advertising.",
|
42
|
+
"type": "boolean"
|
43
|
+
},
|
44
|
+
"analytics_default_allow_ad_user_data": {
|
45
|
+
"description": "Sets consent for sending user data to Google for advertising purposes.",
|
46
|
+
"type": "boolean"
|
47
|
+
},
|
36
48
|
"analytics_default_allow_ad_personalization_signals": {
|
37
49
|
"description": "Configure whether a user's Analytics data may be used for personalized advertising in other products.\n If set, may be overridden at runtime by calling setUserProperty on the key 'allow_personalized_ads'",
|
38
50
|
"type": "boolean"
|
package/ios_config.sh
CHANGED
@@ -14,6 +14,18 @@
|
|
14
14
|
# See the License for the specific language governing permissions and
|
15
15
|
# limitations under the License.
|
16
16
|
#
|
17
|
+
|
18
|
+
##########################################################################
|
19
|
+
##########################################################################
|
20
|
+
#
|
21
|
+
# NOTE THAT IF YOU CHANGE THIS FILE YOU MUST RUN pod install AFTERWARDS
|
22
|
+
#
|
23
|
+
# This file is installed as an Xcode build script in the project file
|
24
|
+
# by cocoapods, and you will not see your changes until you pod install
|
25
|
+
#
|
26
|
+
##########################################################################
|
27
|
+
##########################################################################
|
28
|
+
|
17
29
|
set -e
|
18
30
|
|
19
31
|
_MAX_LOOKUPS=2;
|
@@ -119,6 +131,30 @@ if [[ ${_SEARCH_RESULT} ]]; then
|
|
119
131
|
_PLIST_ENTRY_VALUES+=("$(jsonBoolToYesNo "$_ANALYTICS_IDFV_COLLECTION")")
|
120
132
|
fi
|
121
133
|
|
134
|
+
# config.analytics_default_allow_analytics_storage
|
135
|
+
_ANALYTICS_STORAGE=$(getFirebaseJsonKeyValue "$_JSON_OUTPUT_RAW" "analytics_default_allow_analytics_storage")
|
136
|
+
if [[ $_ANALYTICS_STORAGE ]]; then
|
137
|
+
_PLIST_ENTRY_KEYS+=("GOOGLE_ANALYTICS_DEFAULT_ALLOW_ANALYTICS_STORAGE")
|
138
|
+
_PLIST_ENTRY_TYPES+=("bool")
|
139
|
+
_PLIST_ENTRY_VALUES+=("$(jsonBoolToYesNo "$_ANALYTICS_STORAGE")")
|
140
|
+
fi
|
141
|
+
|
142
|
+
# config.analytics_default_allow_ad_storage
|
143
|
+
_ANALYTICS_AD_STORAGE=$(getFirebaseJsonKeyValue "$_JSON_OUTPUT_RAW" "analytics_default_allow_ad_storage")
|
144
|
+
if [[ $_ANALYTICS_AD_STORAGE ]]; then
|
145
|
+
_PLIST_ENTRY_KEYS+=("GOOGLE_ANALYTICS_DEFAULT_ALLOW_AD_STORAGE")
|
146
|
+
_PLIST_ENTRY_TYPES+=("bool")
|
147
|
+
_PLIST_ENTRY_VALUES+=("$(jsonBoolToYesNo "$_ANALYTICS_AD_STORAGE")")
|
148
|
+
fi
|
149
|
+
|
150
|
+
# config.analytics_default_allow_ad_user_data
|
151
|
+
_ANALYTICS_AD_USER_DATA=$(getFirebaseJsonKeyValue "$_JSON_OUTPUT_RAW" "analytics_default_allow_ad_user_data")
|
152
|
+
if [[ $_ANALYTICS_AD_USER_DATA ]]; then
|
153
|
+
_PLIST_ENTRY_KEYS+=("GOOGLE_ANALYTICS_DEFAULT_ALLOW_AD_USER_DATA")
|
154
|
+
_PLIST_ENTRY_TYPES+=("bool")
|
155
|
+
_PLIST_ENTRY_VALUES+=("$(jsonBoolToYesNo "$_ANALYTICS_AD_USER_DATA")")
|
156
|
+
fi
|
157
|
+
|
122
158
|
# config.analytics_default_allow_ad_personalization_signals
|
123
159
|
_ANALYTICS_PERSONALIZATION=$(getFirebaseJsonKeyValue "$_JSON_OUTPUT_RAW" "analytics_default_allow_ad_personalization_signals")
|
124
160
|
if [[ $_ANALYTICS_PERSONALIZATION ]]; then
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '18.
|
2
|
+
module.exports = '18.9.0';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/app",
|
3
|
-
"version": "18.
|
3
|
+
"version": "18.9.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",
|
@@ -88,5 +88,5 @@
|
|
88
88
|
"playServicesAuth": "20.7.0"
|
89
89
|
}
|
90
90
|
},
|
91
|
-
"gitHead": "
|
91
|
+
"gitHead": "695265641dcf2243ab9f27b25776f11616225f68"
|
92
92
|
}
|