Skip to content

Commit

Permalink
chore(deps): update native dependencies (#806)
Browse files Browse the repository at this point in the history
* chore(deps): update native dependencies

Update analytics native dependencies.

* chore(deps): update native dependencies

Set analytics firebase version to 11.2.0.

* chore(deps): update native dependencies

Update app firebase dependencies.

* chore(deps): update native dependencies

Update app-check firebase dependencies.

* chore(deps): update native dependencies

Update authentication firebase dependencies.

* chore(deps): update native dependencies

Update crashlytics firebase dependencies.

* chore(deps): update native dependencies

Update firestore firebase dependencies.

* chore(deps): update native dependencies

Update functions firebase dependencies.

* chore(deps): update native dependencies

Update messaging firebase dependencies.

* chore(deps): update native dependencies

Update performance firebase dependencies.

* chore(deps): update native dependencies

Update remote config firebase dependencies.

* chore(deps): update native dependencies

Update storage firebase dependencies.

* chore(deps): update native dependencies

Update storage firebase dependencies.

* chore(deps): update native dependencies

Generate changeset.

* chore(deps): update native dependencies

Fix authentication plugin failing verify.

* chore(deps): update deps for auth

* chore(deps): update native dependencies

Fix import path for nullable on firestore plugin android.

* revert: chore(deps): update deps for auth

This reverts commit 6406159.

* wip

* Update .changeset/khaki-grapes-itch.md [skip ci]

---------

Co-authored-by: Robin Genz <mail@robingenz.dev>
  • Loading branch information
ebarooni and robingenz authored Jan 27, 2025
1 parent 5c70cf9 commit e1d2896
Show file tree
Hide file tree
Showing 87 changed files with 630 additions and 442 deletions.
15 changes: 15 additions & 0 deletions .changeset/khaki-grapes-itch.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
'@capacitor-firebase/analytics': major
'@capacitor-firebase/app': major
'@capacitor-firebase/app-check': major
'@capacitor-firebase/authentication': major
'@capacitor-firebase/crashlytics': major
'@capacitor-firebase/firestore': major
'@capacitor-firebase/functions': major
'@capacitor-firebase/messaging': major
'@capacitor-firebase/performance': major
'@capacitor-firebase/remote-config': major
'@capacitor-firebase/storage': major
---

chore(deps): update the Firebase SDK to the latest version
712 changes: 386 additions & 326 deletions package-lock.json

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions packages/analytics/BREAKING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,21 @@ This is a comprehensive list of the breaking changes introduced in the major ver

## Versions

- [Version 7.x.x](#version-7xx)
- [Version 6.x.x](#version-6xx)
- [Version 5.x.x](#version-5xx)
- [Version 1.x.x](#version-1xx)

## Version 7.x.x

### Dependencies

- The Firebase Javascript SDK has been updated to `11.2.0`.

### Variables

- On Android, the `firebaseAnalyticsVersion` variable has been updated to `22.2.0`.

## Version 6.x.x

### Dependencies
Expand Down
4 changes: 2 additions & 2 deletions packages/analytics/CapacitorFirebaseAnalytics.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@ Pod::Spec.new do |s|
end

s.subspec 'Analytics' do |analytics|
analytics.dependency 'FirebaseAnalytics', '~> 11.0'
analytics.dependency 'FirebaseAnalytics', '~> 11.7.0'
end

s.subspec 'AnalyticsWithoutAdIdSupport' do |analyticsWithoutAdIdSupport|
analyticsWithoutAdIdSupport.dependency 'FirebaseAnalytics/WithoutAdIdSupport', '~> 11.0'
analyticsWithoutAdIdSupport.dependency 'FirebaseAnalytics/WithoutAdIdSupport', '~> 11.7.0'
end
end
2 changes: 1 addition & 1 deletion packages/analytics/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", branch: "6.0.0"),
.package(url: "https://github.com/firebase/firebase-ios-sdk.git", .upToNextMajor(from: "11.0.0"))
.package(url: "https://github.com/firebase/firebase-ios-sdk.git", .upToNextMajor(from: "11.7.0"))
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion packages/analytics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ See [Disable Advertising ID collection](https://firebase.google.com/docs/analyti

This plugin will use the following project variables (defined in your app’s `variables.gradle` file):

- `$firebaseAnalyticsVersion` version of `com.google.firebase:firebase-analytics` (default: `21.5.1`)
- `$firebaseAnalyticsVersion` version of `com.google.firebase:firebase-analytics` (default: `22.2.0`)

### iOS

Expand Down
2 changes: 1 addition & 1 deletion packages/analytics/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ext {
androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1'
androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.5'
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1'
firebaseAnalyticsVersion = project.hasProperty('firebaseAnalyticsVersion') ? rootProject.ext.firebaseAnalyticsVersion : '21.5.1'
firebaseAnalyticsVersion = project.hasProperty('firebaseAnalyticsVersion') ? rootProject.ext.firebaseAnalyticsVersion : '22.2.0'
}

buildscript {
Expand Down
8 changes: 4 additions & 4 deletions packages/analytics/ios/Plugin/FirebaseAnalyticsPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import FirebaseCore
*/
@objc(FirebaseAnalyticsPlugin)
public class FirebaseAnalyticsPlugin: CAPPlugin, CAPBridgedPlugin {
public let identifier = "FirebaseAnalyticsPlugin"
public let jsName = "FirebaseAnalytics"
public let identifier = "FirebaseAnalyticsPlugin"
public let jsName = "FirebaseAnalytics"
public let pluginMethods: [CAPPluginMethod] = [
CAPPluginMethod(name: "getAppInstanceId", returnType: CAPPluginReturnPromise),
CAPPluginMethod(name: "setConsent", returnType: CAPPluginReturnPromise),
Expand All @@ -21,8 +21,8 @@ public class FirebaseAnalyticsPlugin: CAPPlugin, CAPBridgedPlugin {
CAPPluginMethod(name: "setSessionTimeoutDuration", returnType: CAPPluginReturnPromise),
CAPPluginMethod(name: "setEnabled", returnType: CAPPluginReturnPromise),
CAPPluginMethod(name: "isEnabled", returnType: CAPPluginReturnPromise),
CAPPluginMethod(name: "resetAnalyticsData", returnType: CAPPluginReturnPromise),
]
CAPPluginMethod(name: "resetAnalyticsData", returnType: CAPPluginReturnPromise)
]
public let errorUserIdMissing = "userId must be provided."
public let errorKeyMissing = "key must be provided."
public let errorValueMissing = "value must be provided."
Expand Down
2 changes: 1 addition & 1 deletion packages/analytics/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ end

target 'Plugin' do
capacitor_pods
pod 'FirebaseAnalytics', '11.0.0'
pod 'FirebaseAnalytics', '11.7.0'
end

target 'PluginTests' do
Expand Down
4 changes: 2 additions & 2 deletions packages/analytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"@ionic/eslint-config": "0.3.0",
"@ionic/swiftlint-config": "1.1.2",
"eslint": "7.32.0",
"firebase": "10.9.0",
"firebase": "11.2.0",
"prettier": "2.3.2",
"prettier-plugin-java": "1.0.2",
"rimraf": "3.0.2",
Expand All @@ -76,7 +76,7 @@
},
"peerDependencies": {
"@capacitor/core": "^6.0.0",
"firebase": "^10.9.0 || ^11.0.0"
"firebase": "^11.2.0"
},
"peerDependenciesMeta": {
"firebase": {
Expand Down
12 changes: 12 additions & 0 deletions packages/app-check/BREAKING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,21 @@ This is a comprehensive list of the breaking changes introduced in the major ver

## Versions

- [Version 7.x.x](#version-7xx)
- [Version 6.x.x](#version-6xx)
- [Version 5.x.x](#version-5xx)

## Version 7.x.x

### Dependencies

- The Firebase Javascript SDK has been updated to `11.2.0`.

### Variables

- On Android, the `firebaseAppCheckPlayIntegrityVersion` variable has been updated to `18.0.0`.
- On Android, the `firebaseAppCheckDebugVersion` variable has been updated to `18.0.0`.

## Version 6.x.x

### Dependencies
Expand Down
2 changes: 1 addition & 1 deletion packages/app-check/CapacitorFirebaseAppCheck.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
s.ios.deployment_target = '13.0'
s.dependency 'Capacitor'
s.dependency 'FirebaseAppCheck', '~> 11.0'
s.dependency 'FirebaseAppCheck', '~> 11.7.0'
s.swift_version = '5.1'
s.static_framework = true
end
2 changes: 1 addition & 1 deletion packages/app-check/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", branch: "6.0.0"),
.package(url: "https://github.com/firebase/firebase-ios-sdk.git", .upToNextMajor(from: "11.0.0"))
.package(url: "https://github.com/firebase/firebase-ios-sdk.git", .upToNextMajor(from: "11.7.0"))
],
targets: [
.target(
Expand Down
4 changes: 2 additions & 2 deletions packages/app-check/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ See [Set up your Firebase project](https://firebase.google.com/docs/app-check/an

This plugin will use the following project variables (defined in your app’s `variables.gradle` file):

- `$firebaseAppCheckPlayIntegrityVersion` version of `com.google.firebase:firebase-appcheck-playintegrity` (default: `17.0.1`)
- `$firebaseAppCheckDebugVersion` version of `com.google.firebase:firebase-appcheck-debug` (default: `17.0.1`)
- `$firebaseAppCheckPlayIntegrityVersion` version of `com.google.firebase:firebase-appcheck-playintegrity` (default: `18.0.0`)
- `$firebaseAppCheckDebugVersion` version of `com.google.firebase:firebase-appcheck-debug` (default: `18.0.0`)

### iOS

Expand Down
4 changes: 2 additions & 2 deletions packages/app-check/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ ext {
androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1'
androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.5'
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1'
firebaseAppCheckPlayIntegrityVersion = project.hasProperty('firebaseAppCheckPlayIntegrityVersion') ? rootProject.ext.firebaseAppCheckPlayIntegrityVersion : '17.1.2'
firebaseAppCheckDebugVersion = project.hasProperty('firebaseAppCheckDebugVersion') ? rootProject.ext.firebaseAppCheckDebugVersion : '17.1.2'
firebaseAppCheckPlayIntegrityVersion = project.hasProperty('firebaseAppCheckPlayIntegrityVersion') ? rootProject.ext.firebaseAppCheckPlayIntegrityVersion : '18.0.0'
firebaseAppCheckDebugVersion = project.hasProperty('firebaseAppCheckDebugVersion') ? rootProject.ext.firebaseAppCheckDebugVersion : '18.0.0'
}

buildscript {
Expand Down
8 changes: 4 additions & 4 deletions packages/app-check/ios/Plugin/FirebaseAppCheckPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ import Capacitor
*/
@objc(FirebaseAppCheckPlugin)
public class FirebaseAppCheckPlugin: CAPPlugin, CAPBridgedPlugin {
public let identifier = "FirebaseAppCheckPlugin"
public let jsName = "FirebaseAppCheck"
public let identifier = "FirebaseAppCheckPlugin"
public let jsName = "FirebaseAppCheck"
public let pluginMethods: [CAPPluginMethod] = [
CAPPluginMethod(name: "getToken", returnType: CAPPluginReturnPromise),
CAPPluginMethod(name: "initialize", returnType: CAPPluginReturnPromise),
CAPPluginMethod(name: "setTokenAutoRefreshEnabled", returnType: CAPPluginReturnPromise),
]
CAPPluginMethod(name: "setTokenAutoRefreshEnabled", returnType: CAPPluginReturnPromise)
]
public let tag = "FirebaseApp"
public let errorEnabledMissing = "enabled must be provided."
public let errorGetTokenFailed = "Failed to get token."
Expand Down
2 changes: 1 addition & 1 deletion packages/app-check/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ end

target 'Plugin' do
capacitor_pods
pod 'FirebaseAppCheck', '11.0.0'
pod 'FirebaseAppCheck', '11.7.0'
end

target 'PluginTests' do
Expand Down
4 changes: 2 additions & 2 deletions packages/app-check/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"@ionic/eslint-config": "0.3.0",
"@ionic/swiftlint-config": "1.1.2",
"eslint": "7.32.0",
"firebase": "10.9.0",
"firebase": "11.2.0",
"prettier": "2.3.2",
"prettier-plugin-java": "1.0.2",
"rimraf": "3.0.2",
Expand All @@ -76,7 +76,7 @@
},
"peerDependencies": {
"@capacitor/core": "^6.0.0",
"firebase": "^10.9.0 || ^11.0.0"
"firebase": "^11.2.0"
},
"peerDependenciesMeta": {
"firebase": {
Expand Down
11 changes: 11 additions & 0 deletions packages/app/BREAKING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,21 @@ This is a comprehensive list of the breaking changes introduced in the major ver

## Versions

- [Version 7.x.x](#version-7xx)
- [Version 6.x.x](#version-6xx)
- [Version 5.x.x](#version-5xx)
- [Version 1.x.x](#version-1xx)

## Version 7.x.x

### Dependencies

- The Firebase Javascript SDK has been updated to `11.2.0`.

### Variables

- On Android, the `firebaseCommonVersion` variable has been updated to `21.0.0`.

## Version 6.x.x

### Dependencies
Expand Down
2 changes: 1 addition & 1 deletion packages/app/CapacitorFirebaseApp.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
s.ios.deployment_target = '13.0'
s.dependency 'Capacitor'
s.dependency 'FirebaseCore', '~> 11.0'
s.dependency 'FirebaseCore', '~> 11.7.0'
s.swift_version = '5.1'
s.static_framework = true
end
2 changes: 1 addition & 1 deletion packages/app/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", branch: "6.0.0"),
.package(url: "https://github.com/firebase/firebase-ios-sdk.git", .upToNextMajor(from: "11.0.0"))
.package(url: "https://github.com/firebase/firebase-ios-sdk.git", .upToNextMajor(from: "11.7.0"))
],
targets: [
.target(
Expand Down
2 changes: 1 addition & 1 deletion packages/app/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ Add Firebase to your project if you haven't already ([Android](https://github.co

This plugin will use the following project variables (defined in your app’s `variables.gradle` file):

- `$firebaseCommonVersion` version of `com.google.firebase:firebase-common` (default: `20.3.2`)
- `$firebaseCommonVersion` version of `com.google.firebase:firebase-common` (default: `21.0.0`)

## Configuration

Expand Down
2 changes: 1 addition & 1 deletion packages/app/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ ext {
androidxAppCompatVersion = project.hasProperty('androidxAppCompatVersion') ? rootProject.ext.androidxAppCompatVersion : '1.6.1'
androidxJunitVersion = project.hasProperty('androidxJunitVersion') ? rootProject.ext.androidxJunitVersion : '1.1.5'
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1'
firebaseCommonVersion = project.hasProperty('firebaseCommonVersion') ? rootProject.ext.firebaseCommonVersion : '20.4.2'
firebaseCommonVersion = project.hasProperty('firebaseCommonVersion') ? rootProject.ext.firebaseCommonVersion : '21.0.0'
}

buildscript {
Expand Down
8 changes: 4 additions & 4 deletions packages/app/ios/Plugin/FirebaseAppPlugin.swift
Original file line number Diff line number Diff line change
Expand Up @@ -9,12 +9,12 @@ import FirebaseCore
*/
@objc(FirebaseAppPlugin)
public class FirebaseAppPlugin: CAPPlugin, CAPBridgedPlugin {
public let identifier = "FirebaseAppPlugin"
public let jsName = "FirebaseApp"
public let identifier = "FirebaseAppPlugin"
public let jsName = "FirebaseApp"
public let pluginMethods: [CAPPluginMethod] = [
CAPPluginMethod(name: "getName", returnType: CAPPluginReturnPromise),
CAPPluginMethod(name: "getOptions", returnType: CAPPluginReturnPromise),
]
CAPPluginMethod(name: "getOptions", returnType: CAPPluginReturnPromise)
]

override public func load() {
if FirebaseApp.app() == nil {
Expand Down
2 changes: 1 addition & 1 deletion packages/app/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ end

target 'Plugin' do
capacitor_pods
pod 'FirebaseCore', '11.0.0'
pod 'FirebaseCore', '11.7.0'
end

target 'PluginTests' do
Expand Down
4 changes: 2 additions & 2 deletions packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
"@ionic/eslint-config": "0.3.0",
"@ionic/swiftlint-config": "1.1.2",
"eslint": "7.32.0",
"firebase": "10.9.0",
"firebase": "11.2.0",
"prettier": "2.3.2",
"prettier-plugin-java": "1.0.2",
"rimraf": "3.0.2",
Expand All @@ -76,7 +76,7 @@
},
"peerDependencies": {
"@capacitor/core": "^6.0.0",
"firebase": "^10.9.0 || ^11.0.0"
"firebase": "^11.2.0"
},
"peerDependenciesMeta": {
"firebase": {
Expand Down
8 changes: 7 additions & 1 deletion packages/authentication/BREAKING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,23 @@ This is a comprehensive list of the breaking changes introduced in the major ver

## Versions

- [Version 7.x.x](#version-6xx)
- [Version 7.x.x](#version-7xx)
- [Version 6.x.x](#version-6xx)
- [Version 5.x.x](#version-5xx)
- [Version 1.x.x](#version-1xx)
- [Version 0.4.x](#version-04x)

## Version 7.x.x

### Dependencies

- The Firebase Javascript SDK has been updated to `11.2.0`.

### Variables

- On Android, the `facebookLoginVersion` variable has been updated to `18.0.0`.
- On Android, the `firebaseAuthVersion` variable has been updated to `23.1.0`.
- On Android, the `playServicesAuthVersion` variable has been updated to `20.7.0`.

### Google Sign-In

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ Pod::Spec.new do |s|
s.source_files = 'ios/Plugin/**/*.{swift,h,m,c,cc,mm,cpp}'
s.ios.deployment_target = '13.0'
s.dependency 'Capacitor'
s.dependency 'FirebaseAuth', '~> 11.0'
s.dependency 'FirebaseAuth', '~> 11.7.0'
s.swift_version = '5.1'
s.static_framework = true
s.default_subspec = 'Lite'
Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ let package = Package(
],
dependencies: [
.package(url: "https://github.com/ionic-team/capacitor-swift-pm.git", branch: "6.0.0"),
.package(url: "https://github.com/firebase/firebase-ios-sdk.git", .upToNextMajor(from: "11.0.0"))
.package(url: "https://github.com/firebase/firebase-ios-sdk.git", .upToNextMajor(from: "11.7.0"))
],
targets: [
.target(
Expand Down
10 changes: 5 additions & 5 deletions packages/authentication/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ ext {
androidxEspressoCoreVersion = project.hasProperty('androidxEspressoCoreVersion') ? rootProject.ext.androidxEspressoCoreVersion : '3.5.1'
rgcfaIncludeGoogle = project.hasProperty('rgcfaIncludeGoogle') ? rootProject.ext.rgcfaIncludeGoogle : false
rgcfaIncludeFacebook = project.hasProperty('rgcfaIncludeFacebook') ? rootProject.ext.rgcfaIncludeFacebook : false
firebaseAuthVersion = project.hasProperty('firebaseAuthVersion') ? rootProject.ext.firebaseAuthVersion : '22.3.1'
playServicesAuthVersion = project.hasProperty('playServicesAuthVersion') ? rootProject.ext.playServicesAuthVersion : '21.0.0'
firebaseAuthVersion = project.hasProperty('firebaseAuthVersion') ? rootProject.ext.firebaseAuthVersion : '23.1.0'
playServicesAuthVersion = project.hasProperty('playServicesAuthVersion') ? rootProject.ext.playServicesAuthVersion : '20.7.0'
facebookLoginVersion = project.hasProperty('facebookLoginVersion') ? rootProject.ext.facebookLoginVersion : '18.0.0'
androidxCredentialsVersion = project.hasProperty('androidxCredentialsVersion') ? rootProject.ext.androidxCredentialsVersion : '1.5.0-rc01'
androidxCredentialsPlayServicesAuthVersion = project.hasProperty('androidxCredentialsPlayServicesAuthVersion') ? rootProject.ext.androidxCredentialsPlayServicesAuthVersion : '1.5.0-rc01'
librariesIdentityGoogleidVersion = project.hasProperty('librariesIdentityGoogleidVersion') ? rootProject.ext.librariesIdentityGoogleidVersion : '1.1.1'
androidxCredentialsVersion = project.hasProperty('androidxCredentialsVersion') ? rootProject.ext.androidxCredentialsVersion : '1.2.0-rc01'
androidxCredentialsPlayServicesAuthVersion = project.hasProperty('androidxCredentialsPlayServicesAuthVersion') ? rootProject.ext.androidxCredentialsPlayServicesAuthVersion : '1.2.0-rc01'
librariesIdentityGoogleidVersion = project.hasProperty('librariesIdentityGoogleidVersion') ? rootProject.ext.librariesIdentityGoogleidVersion : '1.1.0'
}

buildscript {
Expand Down
Loading

0 comments on commit e1d2896

Please sign in to comment.