react-native-google-sign-in icon indicating copy to clipboard operation
react-native-google-sign-in copied to clipboard

How to check if Google Play services are available?

Open valerybodak opened this issue 7 years ago • 2 comments

I can't find methods for check it. Anybody help me? Thanks in advance!

valerybodak avatar Jul 29 '17 13:07 valerybodak

Hi @valerybodak ,

Maybe you can try this

GoogleSignin.hasPlayServices({ autoResolve: true }).then(() => {
        this.doGoogleLogin()
      })
      .catch((err) => {
        alert("Play services error", err.code, err.message)
      })

addingama avatar Aug 02 '17 02:08 addingama

Again, @dashracer - you're looking at the wrong package. react-native-google-signin has this

kyle-ssg avatar Aug 14 '17 21:08 kyle-ssg