comment out google-signin in GoogleAuth.js

This commit is contained in:
Bart Akeley 2018-06-10 10:40:28 -05:00
parent c93022a674
commit f86061d292

View file

@ -1,5 +1,5 @@
// @flow
import { GoogleSignin } from 'react-native-google-signin';
// import { GoogleSignin } from 'react-native-google-signin';
export type GoogleUser = {
name: string,
@ -9,8 +9,8 @@ export type GoogleUser = {
};
export const authGoogle = async () => {
await GoogleSignin.configure({
webClientId: '648700523612-5p6rpumnhcjr4635hnsg4d7cg88ue3te.apps.googleusercontent.com',
});
return GoogleSignin.signIn();
// await GoogleSignin.configure({
// webClientId: '648700523612-5p6rpumnhcjr4635hnsg4d7cg88ue3te.apps.googleusercontent.com',
// });
// return GoogleSignin.signIn();
};