Skip to content

Commit

Permalink
fix: correct androidResolutionForPlayServices API
Browse files Browse the repository at this point in the history
Previously was calling the incorrect native API from JS
Fixes #3864
  • Loading branch information
mikehardy authored Jul 3, 2020
1 parent b17df84 commit afcd794
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/app/lib/utils/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class FirebaseUtilsModule extends FirebaseModule {
if (isIOS) {
return Promise.resolve();
}
return this.native.androidGetPlayServicesStatus();
return this.native.androidResolutionForPlayServices();
}

logInfo(...args) {
Expand Down

0 comments on commit afcd794

Please sign in to comment.