fix: correct androidResolutionForPlayServices API

Previously was calling the incorrect native API from JS
Fixes #3864
This commit is contained in:
Mike Hardy
2020-07-03 11:41:28 -05:00
committed by GitHub
parent b17df846d2
commit afcd79479b

View File

@@ -69,7 +69,7 @@ class FirebaseUtilsModule extends FirebaseModule {
if (isIOS) {
return Promise.resolve();
}
return this.native.androidGetPlayServicesStatus();
return this.native.androidResolutionForPlayServices();
}
logInfo(...args) {