Skip to content

Commit

Permalink
feat!: update native SDKs (#366)
Browse files Browse the repository at this point in the history
  • Loading branch information
robingenz committed Apr 21, 2023
1 parent 384de1a commit b98f476
Show file tree
Hide file tree
Showing 47 changed files with 1,823 additions and 1,666 deletions.
12 changes: 12 additions & 0 deletions .changeset/lemon-windows-chew.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
---
"@capacitor-firebase/analytics": major
"@capacitor-firebase/app": major
"@capacitor-firebase/app-check": major
"@capacitor-firebase/authentication": major
"@capacitor-firebase/crashlytics": major
"@capacitor-firebase/messaging": major
"@capacitor-firebase/performance": major
"@capacitor-firebase/remote-config": major
---

feat!: update native SDKs
3,365 changes: 1,755 additions & 1,610 deletions package-lock.json

Large diffs are not rendered by default.

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 'Firebase/Analytics', '10.2.0'
analytics.dependency 'FirebaseAnalytics', '10.8.0'
end

s.subspec 'AnalyticsWithoutAdIdSupport' do |analyticsWithoutAdIdSupport|
analyticsWithoutAdIdSupport.dependency 'Firebase/AnalyticsWithoutAdIdSupport', '10.2.0'
analyticsWithoutAdIdSupport.dependency 'FirebaseAnalyticsWithoutAdIdSupport', '10.8.0'
end
end
2 changes: 1 addition & 1 deletion packages/analytics/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):

- `$firebaseAnalyticsVersion` version of `com.google.firebase:firebase-analytics` (default: `21.2.0`)
- `$firebaseAnalyticsVersion` version of `com.google.firebase:firebase-analytics` (default: `21.2.2`)

### 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.2.0'
firebaseAnalyticsVersion = project.hasProperty('firebaseAnalyticsVersion') ? rootProject.ext.firebaseAnalyticsVersion : '21.2.2'
}

buildscript {
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 'Firebase/Analytics', '10.2.0'
pod 'FirebaseAnalytics', '10.8.0'
end

target 'PluginTests' do
Expand Down
2 changes: 1 addition & 1 deletion packages/analytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"@ionic/prettier-config": "1.0.1",
"@ionic/swiftlint-config": "1.1.2",
"eslint": "7.32.0",
"firebase": "9.6.4",
"firebase": "9.20.0",
"prettier": "2.3.2",
"prettier-plugin-java": "1.0.2",
"rimraf": "3.0.2",
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 'Firebase/AppCheck', '10.2.0'
s.dependency 'FirebaseAppCheck', '10.8.0'
s.swift_version = '5.1'
s.static_framework = true
end
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: `16.1.0`)
- `$firebaseAppCheckDebugVersion` version of `com.google.firebase:firebase-appcheck-debug` (default: `16.1.0`)
- `$firebaseAppCheckPlayIntegrityVersion` version of `com.google.firebase:firebase-appcheck-playintegrity` (default: `16.1.2`)
- `$firebaseAppCheckDebugVersion` version of `com.google.firebase:firebase-appcheck-debug` (default: `16.1.2`)

### 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 : '16.1.0'
firebaseAppCheckDebugVersion = project.hasProperty('firebaseAppCheckDebugVersion') ? rootProject.ext.firebaseAppCheckDebugVersion : '16.1.0'
firebaseAppCheckPlayIntegrityVersion = project.hasProperty('firebaseAppCheckPlayIntegrityVersion') ? rootProject.ext.firebaseAppCheckPlayIntegrityVersion : '16.1.2'
firebaseAppCheckDebugVersion = project.hasProperty('firebaseAppCheckDebugVersion') ? rootProject.ext.firebaseAppCheckDebugVersion : '16.1.2'
}

buildscript {
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 'Firebase/AppCheck', '10.2.0'
pod 'FirebaseAppCheck', '10.8.0'
end

target 'PluginTests' do
Expand Down
2 changes: 1 addition & 1 deletion packages/app-check/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"@ionic/prettier-config": "1.0.1",
"@ionic/swiftlint-config": "1.1.2",
"eslint": "7.32.0",
"firebase": "9.6.4",
"firebase": "9.20.0",
"prettier": "2.3.2",
"prettier-plugin-java": "1.0.2",
"rimraf": "3.0.2",
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 'Firebase/Core', '10.2.0'
s.dependency 'FirebaseCore', '10.8.0'
s.swift_version = '5.1'
s.static_framework = true
end
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.2.0`)
- `$firebaseCommonVersion` version of `com.google.firebase:firebase-common` (default: `20.3.2`)

## 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.2.0'
firebaseCommonVersion = project.hasProperty('firebaseCommonVersion') ? rootProject.ext.firebaseCommonVersion : '20.3.2'
}

buildscript {
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 'Firebase/Core', '10.2.0'
pod 'FirebaseCore', '10.8.0'
end

target 'PluginTests' do
Expand Down
2 changes: 1 addition & 1 deletion packages/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"@ionic/prettier-config": "1.0.1",
"@ionic/swiftlint-config": "1.1.2",
"eslint": "7.32.0",
"firebase": "9.6.4",
"firebase": "9.20.0",
"prettier": "2.3.2",
"prettier-plugin-java": "1.0.2",
"rimraf": "3.0.2",
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 'Firebase/Auth', '10.2.0'
s.dependency 'FirebaseAuth', '10.8.0'
s.swift_version = '5.1'
s.static_framework = true
s.default_subspec = 'Lite'
Expand All @@ -24,12 +24,12 @@ Pod::Spec.new do |s|

s.subspec 'Google' do |google|
google.xcconfig = { 'OTHER_SWIFT_FLAGS' => '$(inherited) -DRGCFA_INCLUDE_GOOGLE' }
google.dependency 'GoogleSignIn', '6.2.4'
google.dependency 'GoogleSignIn', '7.0.0'
end

s.subspec 'Facebook' do |facebook|
facebook.xcconfig = { 'OTHER_SWIFT_FLAGS' => '$(inherited) -DRGCFA_INCLUDE_FACEBOOK' }
facebook.dependency 'FBSDKCoreKit', '15.1.0'
facebook.dependency 'FBSDKLoginKit', '15.1.0'
facebook.dependency 'FBSDKCoreKit', '16.0.1'
facebook.dependency 'FBSDKLoginKit', '16.0.1'
end
end
6 changes: 3 additions & 3 deletions packages/authentication/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ 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 : '21.1.0'
playServicesAuthVersion = project.hasProperty('playServicesAuthVersion') ? rootProject.ext.playServicesAuthVersion : '20.4.0'
facebookLoginVersion = project.hasProperty('facebookLoginVersion') ? rootProject.ext.facebookLoginVersion : '15.1.0'
firebaseAuthVersion = project.hasProperty('firebaseAuthVersion') ? rootProject.ext.firebaseAuthVersion : '21.2.0'
playServicesAuthVersion = project.hasProperty('playServicesAuthVersion') ? rootProject.ext.playServicesAuthVersion : '20.5.0'
facebookLoginVersion = project.hasProperty('facebookLoginVersion') ? rootProject.ext.facebookLoginVersion : '16.0.0'
}

buildscript {
Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/docs/custom-token.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
## iOS

1. See [Before you begin](https://firebase.google.com/docs/auth/ios/custom-auth#before-you-begin) and follow the instructions to configure and enable sign-in with Custom Token correctly.
**Attention**: Skip step 2. The `Firebase/Auth` pod is already added by the plugin.
**Attention**: Skip step 2. The `FirebaseAuth` pod is already added by the plugin.

## Web

Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/docs/setup-email-link.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
## iOS

1. See [Before you begin](https://firebase.google.com/docs/auth/ios/email-link-auth#before_you_begin) and follow the instructions to configure sign-in with Email Link correctly.
**Attention**: Skip step 2. The `Firebase/Auth` pod is already added by the plugin.
**Attention**: Skip step 2. The `FirebaseAuth` pod is already added by the plugin.
1. See [Enable Email Link sign-in for your Firebase project](https://firebase.google.com/docs/auth/ios/email-link-auth#enable_email_link_sign-in_for_your_firebase_project) and follow the instructions to enable the Email provider and Email link sign-in method for your Firebase project.
1. See [Support Universal Links](https://developer.apple.com/library/archive/documentation/General/Conceptual/AppSearch/UniversalLinks.html) on how to enable Universal Links in order to open an Email Link directly in your app.
1. Add the following lines to your `ios/App/App/Info.plist` file:
Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/docs/setup-github.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

1. Add `github.com` to the `providers` [configuration](https://github.com/capawesome-team/capacitor-firebase/tree/main/packages/authentication#configuration) array.
1. See [Before you begin](https://firebase.google.com/docs/auth/ios/github-auth#before_you_begin) and follow the instructions to configure and enable sign-in with GitHub correctly.
**Attention**: Skip step 2. The `Firebase/Auth` pod is already added by the plugin.
**Attention**: Skip step 2. The `FirebaseAuth` pod is already added by the plugin.
1. Add custom URL schemes to your Xcode project:
1. Open your project configuration.
Select your app from the **TARGETS** section, then select the **Info** tab, and expand the **URL Types** section.
Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/docs/setup-phone.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

1. Add `phone` to the `providers` [configuration](https://github.com/capawesome-team/capacitor-firebase/tree/main/packages/authentication#configuration) array.
1. See [Before you begin](https://firebase.google.com/docs/auth/ios/phone-auth#before-you-begin) and follow the instructions to configure sign-in using a Phone Number correctly.
**Attention**: Skip step 2. The `Firebase/Auth` pod is already added by the plugin.
**Attention**: Skip step 2. The `FirebaseAuth` pod is already added by the plugin.
1. See [Enable Phone Number sign-in for your Firebase project](https://firebase.google.com/docs/auth/ios/phone-auth#enable-phone-number-sign-in-for-your-firebase-project) and follow the instructions to enable Phone Number sign-in for your Firebase project correctly.
1. See [Enable app verification](https://firebase.google.com/docs/auth/ios/phone-auth#enable-app-verification) and follow the instructions to enable app verification correctly.

Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/docs/setup-twitter.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

1. Add `twitter.com` to the `providers` [configuration](https://github.com/capawesome-team/capacitor-firebase/tree/main/packages/authentication#configuration) array.
1. See [Before you begin](https://firebase.google.com/docs/auth/ios/twitter-login#before_you_begin) and follow the instructions to configure and enable sign-in with Twitter correctly.
**Attention**: Skip step 2. The `Firebase/Auth` pod is already added by the plugin.
**Attention**: Skip step 2. The `FirebaseAuth` pod is already added by the plugin.
1. Add custom URL schemes to your Xcode project:
1. Open your project configuration.
Select your app from the **TARGETS** section, then select the **Info** tab, and expand the **URL Types** section.
Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/docs/third-party-sdks.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ This app uses the following SDKs, among others:

| Provider | Android | iOS | Web |
| -------- | ------------------------------------------- | ------------------------------- | ---------- |
| Firebase | `com.google.firebase:firebase-auth` | `Firebase/Auth` | `firebase` |
| Firebase | `com.google.firebase:firebase-auth` | `FirebaseAuth` | `firebase` |
| Google | `com.google.android.gms:play-services-auth` | `GoogleSignIn` | - |
| Facebook | `com.facebook.android:facebook-login` | `FBSDKCoreKit`, `FBSDKLoginKit` | - |

Expand Down
8 changes: 4 additions & 4 deletions packages/authentication/ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ end

target 'Plugin' do
capacitor_pods
pod 'Firebase/Auth', '10.2.0'
pod 'GoogleSignIn', '6.2.4'
pod 'FBSDKCoreKit', '15.1.0'
pod 'FBSDKLoginKit', '15.1.0'
pod 'FirebaseAuth', '10.8.0'
pod 'GoogleSignIn', '7.0.0'
pod 'FBSDKCoreKit', '16.0.1'
pod 'FBSDKLoginKit', '16.0.1'
end

target 'PluginTests' do
Expand Down
2 changes: 1 addition & 1 deletion packages/authentication/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"@ionic/prettier-config": "1.0.1",
"@ionic/swiftlint-config": "1.1.2",
"eslint": "7.32.0",
"firebase": "9.6.4",
"firebase": "9.20.0",
"prettier": "2.3.2",
"prettier-plugin-java": "1.0.2",
"rimraf": "3.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/crashlytics/CapacitorFirebaseCrashlytics.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 'Firebase/Crashlytics', '10.2.0'
s.dependency 'FirebaseCrashlytics', '10.8.0'
s.swift_version = '5.1'
s.static_framework = true
end
2 changes: 1 addition & 1 deletion packages/crashlytics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ See [Add the Firebase Crashlytics plugin to your app](https://firebase.google.co

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

- `$firebaseCrashlyticsVersion` version of `com.google.firebase:firebase-crashlytics` (default: `18.3.2`)
- `$firebaseCrashlyticsVersion` version of `com.google.firebase:firebase-crashlytics` (default: `18.3.6`)

### iOS

Expand Down
2 changes: 1 addition & 1 deletion packages/crashlytics/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'
firebaseCrashlyticsVersion = project.hasProperty('firebaseCrashlyticsVersion') ? rootProject.ext.firebaseCrashlyticsVersion : '18.3.2'
firebaseCrashlyticsVersion = project.hasProperty('firebaseCrashlyticsVersion') ? rootProject.ext.firebaseCrashlyticsVersion : '18.3.6'
}

buildscript {
Expand Down
2 changes: 1 addition & 1 deletion packages/crashlytics/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 'Firebase/Crashlytics', '10.2.0'
pod 'FirebaseCrashlytics', '10.8.0'
end

target 'PluginTests' do
Expand Down
2 changes: 1 addition & 1 deletion packages/crashlytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"@ionic/prettier-config": "1.0.1",
"@ionic/swiftlint-config": "1.1.2",
"eslint": "7.32.0",
"firebase": "9.6.4",
"firebase": "9.20.0",
"prettier": "2.3.2",
"prettier-plugin-java": "1.0.2",
"rimraf": "3.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/messaging/CapacitorFirebaseMessaging.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 'Firebase/Messaging', '10.2.0'
s.dependency 'FirebaseMessaging', '10.8.0'
s.swift_version = '5.1'
s.static_framework = true
end
2 changes: 1 addition & 1 deletion packages/messaging/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,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):

- `$firebaseMessagingVersion` version of `com.google.firebase:firebase-messaging` (default: `23.1.0`)
- `$firebaseMessagingVersion` version of `com.google.firebase:firebase-messaging` (default: `23.1.2`)

#### Push Notification Icon

Expand Down
2 changes: 1 addition & 1 deletion packages/messaging/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'
firebaseMessagingVersion = project.hasProperty('firebaseMessagingVersion') ? rootProject.ext.firebaseMessagingVersion : '23.1.0'
firebaseMessagingVersion = project.hasProperty('firebaseMessagingVersion') ? rootProject.ext.firebaseMessagingVersion : '23.1.2'
}

buildscript {
Expand Down
2 changes: 1 addition & 1 deletion packages/messaging/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 'Firebase/Messaging', '10.2.0'
pod 'FirebaseMessaging', '10.8.0'
end

target 'PluginTests' do
Expand Down
2 changes: 1 addition & 1 deletion packages/messaging/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"@ionic/prettier-config": "1.0.1",
"@ionic/swiftlint-config": "1.1.2",
"eslint": "7.32.0",
"firebase": "9.6.4",
"firebase": "9.20.0",
"prettier": "2.3.2",
"prettier-plugin-java": "1.0.2",
"rimraf": "3.0.2",
Expand Down
2 changes: 1 addition & 1 deletion packages/performance/CapacitorFirebasePerformance.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 'Firebase/Performance', '10.2.0'
s.dependency 'FirebasePerformance', '10.8.0'
s.swift_version = '5.1'
s.static_framework = true
end
2 changes: 1 addition & 1 deletion packages/performance/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ See [Add the Performance Monitoring plugin to your app](https://firebase.google.

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

- `$firebasePerfVersion` version of `com.google.firebase:firebase-perf` (default: `20.3.0`)
- `$firebasePerfVersion` version of `com.google.firebase:firebase-perf` (default: `20.3.1`)

## Configuration

Expand Down
2 changes: 1 addition & 1 deletion packages/performance/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'
firebasePerfVersion = project.hasProperty('firebasePerfVersion') ? rootProject.ext.firebasePerfVersion : '20.3.0'
firebasePerfVersion = project.hasProperty('firebasePerfVersion') ? rootProject.ext.firebasePerfVersion : '20.3.1'
}

buildscript {
Expand Down
2 changes: 1 addition & 1 deletion packages/performance/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 'Firebase/Performance', '10.2.0'
pod 'FirebasePerformance', '10.8.0'
end

target 'PluginTests' do
Expand Down
Loading

0 comments on commit b98f476

Please sign in to comment.