@react-native-firebase/app 14.11.1 → 15.1.1
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,22 @@
|
|
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
|
+
## [15.1.1](https://github.com/invertase/react-native-firebase/compare/v15.1.0...v15.1.1) (2022-06-28)
|
7
|
+
|
8
|
+
**Note:** Version bump only for package @react-native-firebase/app
|
9
|
+
|
10
|
+
# [15.1.0](https://github.com/invertase/react-native-firebase/compare/v15.0.0...v15.1.0) (2022-06-28)
|
11
|
+
|
12
|
+
### Features
|
13
|
+
|
14
|
+
- **analytics, ios:** implement firebase.json toggle to override default SKAdNewtork registration ([5da99bd](https://github.com/invertase/react-native-firebase/commit/5da99bde9f58a5d660ab9c59c61bf91db01cd962))
|
15
|
+
- **android, sdk:** use firebase-android-sdk 30.2.0 ([66e6fb0](https://github.com/invertase/react-native-firebase/commit/66e6fb0885c4f2885aeec140a9c0655a5eedd8df))
|
16
|
+
- **ios, sdk:** update to firebase-ios-sdk 9.2.0 ([7affa79](https://github.com/invertase/react-native-firebase/commit/7affa7989c64012bd6fc89fcc0ecf988e7f4e92a))
|
17
|
+
|
18
|
+
# [15.0.0](https://github.com/invertase/react-native-firebase/compare/v14.11.1...v15.0.0) (2022-06-20)
|
19
|
+
|
20
|
+
**Note:** Version bump only for package @react-native-firebase/app
|
21
|
+
|
6
22
|
## [14.11.1](https://github.com/invertase/react-native-firebase/compare/v14.11.0...v14.11.1) (2022-06-17)
|
7
23
|
|
8
24
|
### Bug Fixes
|
package/firebase-schema.json
CHANGED
@@ -29,6 +29,10 @@
|
|
29
29
|
"description": "If you wish to disable automatic screen reporting in your app.\n This cannot be altered at runtime once set in the config.",
|
30
30
|
"type": "boolean"
|
31
31
|
},
|
32
|
+
"google_analytics_registration_with_ad_network_enabled": {
|
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
|
+
"type": "boolean"
|
35
|
+
},
|
32
36
|
"analytics_default_allow_ad_personalization_signals": {
|
33
37
|
"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'",
|
34
38
|
"type": "boolean"
|
package/ios_config.sh
CHANGED
@@ -127,6 +127,14 @@ if [[ ${_SEARCH_RESULT} ]]; then
|
|
127
127
|
_PLIST_ENTRY_VALUES+=("$(jsonBoolToYesNo "$_ANALYTICS_PERSONALIZATION")")
|
128
128
|
fi
|
129
129
|
|
130
|
+
# config.analytics_registration_with_ad_network_enabled
|
131
|
+
_ANALYTICS_REGISTRATION_WITH_AD_NETWORK=$(getFirebaseJsonKeyValue "$_JSON_OUTPUT_RAW" "google_analytics_registration_with_ad_network_enabled")
|
132
|
+
if [[ $_ANALYTICS_REGISTRATION_WITH_AD_NETWORK ]]; then
|
133
|
+
_PLIST_ENTRY_KEYS+=("GOOGLE_ANALYTICS_REGISTRATION_WITH_AD_NETWORK_ENABLED")
|
134
|
+
_PLIST_ENTRY_TYPES+=("bool")
|
135
|
+
_PLIST_ENTRY_VALUES+=("$(jsonBoolToYesNo "$_ANALYTICS_REGISTRATION_WITH_AD_NETWORK")")
|
136
|
+
fi
|
137
|
+
|
130
138
|
# config.google_analytics_automatic_screen_reporting_enabled
|
131
139
|
_ANALYTICS_AUTO_SCREEN_REPORTING=$(getFirebaseJsonKeyValue "$_JSON_OUTPUT_RAW" "google_analytics_automatic_screen_reporting_enabled")
|
132
140
|
if [[ $_ANALYTICS_AUTO_SCREEN_REPORTING ]]; then
|
package/lib/version.js
CHANGED
@@ -1,2 +1,2 @@
|
|
1
1
|
// Generated by genversion.
|
2
|
-
module.exports = '
|
2
|
+
module.exports = '15.1.1';
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@react-native-firebase/app",
|
3
|
-
"version": "
|
3
|
+
"version": "15.1.1",
|
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",
|
@@ -65,19 +65,19 @@
|
|
65
65
|
},
|
66
66
|
"sdkVersions": {
|
67
67
|
"ios": {
|
68
|
-
"firebase": "
|
68
|
+
"firebase": "9.2.0"
|
69
69
|
},
|
70
70
|
"android": {
|
71
71
|
"minSdk": 19,
|
72
72
|
"targetSdk": 31,
|
73
73
|
"compileSdk": 31,
|
74
74
|
"buildTools": "30.0.3",
|
75
|
-
"firebase": "30.
|
76
|
-
"firebaseCrashlyticsGradle": "2.9.
|
75
|
+
"firebase": "30.2.0",
|
76
|
+
"firebaseCrashlyticsGradle": "2.9.1",
|
77
77
|
"firebasePerfGradle": "1.4.1",
|
78
|
-
"gmsGoogleServicesGradle": "4.3.
|
78
|
+
"gmsGoogleServicesGradle": "4.3.12",
|
79
79
|
"playServicesAuth": "20.2.0"
|
80
80
|
}
|
81
81
|
},
|
82
|
-
"gitHead": "
|
82
|
+
"gitHead": "8d469f19b9faec54c492f83c0a2dba6a52815da3"
|
83
83
|
}
|