Skip to content

Latest commit

 

History

History
69 lines (48 loc) · 1.89 KB

File metadata and controls

69 lines (48 loc) · 1.89 KB

Breaking Changes

This is a comprehensive list of the breaking changes introduced in the major version releases of Capacitor Firebase Authentication plugin.

Versions

Version 0.4.x

Google

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'
end

Finally, you need to update the native plugins and dependencies. To do this, run npx cap update.

Facebook

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'
end

Finally, you need to update the native plugins and dependencies. To do this, run npx cap update.

Play Games

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.