This is a comprehensive list of the breaking changes introduced in the major version releases of Capacitor Firebase Authentication plugin.
On Android, add the following project variable to your variables.gradle file (usually android/build.gradle):
ext {
+ rgcfaIncludeGoogle = true
}On iOS, add the RobingenzCapacitorFirebaseAuthentication/Google pod to your Podfile (usually ios/App/Podfile):
target 'App' do
capacitor_pods
# Add your Pods here
+ pod 'RobingenzCapacitorFirebaseAuthentication/Google', :path => '../../node_modules/@robingenz/capacitor-firebase-authentication'
endFinally, you need to update the native plugins and dependencies. To do this, run npx cap update.
On Android, add the following project variable to your variables.gradle file (usually android/build.gradle):
ext {
+ rgcfaIncludeFacebook = true
}On iOS, add the RobingenzCapacitorFirebaseAuthentication/Facebook pod to your Podfile (usually ios/App/Podfile):
target 'App' do
capacitor_pods
# Add your Pods here
+ pod 'RobingenzCapacitorFirebaseAuthentication/Facebook', :path => '../../node_modules/@robingenz/capacitor-firebase-authentication'
endFinally, you need to update the native plugins and dependencies. To do this, run npx cap update.
On Android, add the following project variable to your variables.gradle file (usually android/build.gradle):
ext {
+ rgcfaIncludeGoogle = true
}Finally, you need to update the native plugins and dependencies. To do this, run npx cap update.