@react-native-firebase/app 18.3.0 → 18.3.2

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,19 @@
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.3.2](https://github.com/invertase/react-native-firebase/compare/v18.3.1...v18.3.2) (2023-09-02)
7
+
8
+ ### Bug Fixes
9
+
10
+ - **app, sdks:** adopt firebase-android-sdk 32.2.3 ([129d6ef](https://github.com/invertase/react-native-firebase/commit/129d6ef1eb1b45be3390687a002bddfe87386fa3))
11
+
12
+ ## [18.3.1](https://github.com/invertase/react-native-firebase/compare/v18.3.0...v18.3.1) (2023-08-23)
13
+
14
+ ### Bug Fixes
15
+
16
+ - **app, sdks:** adopt android-sdk 32.2.2 / ios-sdk 10.13.0 ([5484c0b](https://github.com/invertase/react-native-firebase/commit/5484c0b69420f888f9a3a59aec8cc59d45f1d2d6))
17
+ - **app, sdks:** adopt firebase-ios-sdk 10.14.0 ([89e3bd9](https://github.com/invertase/react-native-firebase/commit/89e3bd9cbf73b1af666afde017cba801d48684e8))
18
+
6
19
  ## [18.3.0](https://github.com/invertase/react-native-firebase/compare/v18.2.0...v18.3.0) (2023-07-19)
7
20
 
8
21
  **Note:** Version bump only for package @react-native-firebase/app
@@ -11,7 +11,7 @@ buildscript {
11
11
  }
12
12
 
13
13
  dependencies {
14
- classpath("com.android.tools.build:gradle:7.0.4")
14
+ classpath("com.android.tools.build:gradle:8.1.1")
15
15
  }
16
16
  }
17
17
  }
@@ -59,19 +59,32 @@ if (rootProject.ext && rootProject.ext.firebaseJson) {
59
59
  }
60
60
 
61
61
  android {
62
+ def agpVersion = com.android.Version.ANDROID_GRADLE_PLUGIN_VERSION.tokenize('.')[0].toInteger()
63
+ if (agpVersion >= 7) {
64
+ namespace 'io.invertase.firebase'
65
+ }
66
+
62
67
  defaultConfig {
63
68
  multiDexEnabled true
64
69
  manifestPlaceholders = [
65
70
  firebaseJsonDataCollectionDefaultEnabled: dataCollectionDefaultEnabled
66
71
  ]
67
72
  }
73
+
74
+ buildFeatures {
75
+ // AGP 8 no longer builds config by default
76
+ buildConfig true
77
+ }
78
+
68
79
  lintOptions {
69
80
  disable 'GradleCompatible'
70
81
  abortOnError false
71
82
  }
72
- compileOptions {
73
- sourceCompatibility JavaVersion.VERSION_1_8
74
- targetCompatibility JavaVersion.VERSION_1_8
83
+ if (agpVersion < 8) {
84
+ compileOptions {
85
+ sourceCompatibility JavaVersion.VERSION_11
86
+ targetCompatibility JavaVersion.VERSION_11
87
+ }
75
88
  }
76
89
 
77
90
  sourceSets {
@@ -18,5 +18,5 @@ package io.invertase.firebase.app;
18
18
  */
19
19
  // generated file - do not modify or commit
20
20
  public class ReactNativeFirebaseVersion {
21
- public static String VERSION = "18.3.0";
21
+ public static String VERSION = "18.3.2";
22
22
  }
@@ -43,7 +43,13 @@
43
43
  },
44
44
  "app_log_level": {
45
45
  "description": "Set the log level across all modules. Only applies to iOS currently. Can be 'error', 'warn', 'info', 'debug'.\n Logs messages at the configured level or lower.\n Note that if an app is running from AppStore, it will never log above info even if level is set to a higher (more verbose) setting",
46
- "type": "string"
46
+ "type": "string",
47
+ "enum": [
48
+ "error",
49
+ "warn",
50
+ "info",
51
+ "debug"
52
+ ]
47
53
  },
48
54
  "app_check_token_auto_refresh": {
49
55
  "description": "If this flag is disabled then Firebase App Check will not periodically auto-refresh the app check token.\n This is useful for opt-in-first data flows, for example when dealing with GDPR compliance. \nIf unset it will default to the SDK-wide data collection default enabled setting. This may be overridden dynamically in Javascript.",
@@ -18,4 +18,4 @@
18
18
  #import <React/RCTVersion.h>
19
19
 
20
20
  // generated file - do not modify or commit
21
- NSString* const RNFBVersionString = @"18.3.0";
21
+ NSString* const RNFBVersionString = @"18.3.2";
package/lib/version.js CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- module.exports = '18.3.0';
2
+ module.exports = '18.3.2';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@react-native-firebase/app",
3
- "version": "18.3.0",
3
+ "version": "18.3.2",
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",
@@ -73,7 +73,7 @@
73
73
  },
74
74
  "sdkVersions": {
75
75
  "ios": {
76
- "firebase": "10.12.0",
76
+ "firebase": "10.14.0",
77
77
  "iosTarget": "11.0",
78
78
  "macosTarget": "10.13"
79
79
  },
@@ -81,12 +81,12 @@
81
81
  "minSdk": 19,
82
82
  "targetSdk": 33,
83
83
  "compileSdk": 33,
84
- "firebase": "32.1.0",
85
- "firebaseCrashlyticsGradle": "2.9.2",
84
+ "firebase": "32.2.3",
85
+ "firebaseCrashlyticsGradle": "2.9.9",
86
86
  "firebasePerfGradle": "1.4.2",
87
87
  "gmsGoogleServicesGradle": "4.3.15",
88
- "playServicesAuth": "20.5.0"
88
+ "playServicesAuth": "20.6.0"
89
89
  }
90
90
  },
91
- "gitHead": "cca7053a12ea04c8476f880bd2220f44ee4ae17a"
91
+ "gitHead": "f323891622441c9d59a25ef37b19534db512b372"
92
92
  }