Skip to content Skip to sidebar Skip to footer

Error Adding Google Identity Toolkit With Gradle

I am trying to add the Google Identity Toolkit to my Google App Engine backend in Android Studio using Gradle. But I'm new to Android Studio and Gradle. I have added the following

Solution 1:

Well I feel a little bit stupid... I've realised my mistake:

I should have been using the Gradle config:

compile 'com.google.identitytoolkit:gitkitclient:1.2.3'

instead of

repositories {
    mavenCentral()
}

dependencies {
    compile 'com.google.apis:google-api-services-identitytoolkit:v3-rev191-1.20.0'
}

using

http://search.maven.org/#artifactdetails%7Ccom.google.identitytoolkit%7Cgitkitclient%7C1.2.3%7Cjar

instead of

https://developers.google.com/api-client-library/java/apis/identitytoolkit/v3


Post a Comment for "Error Adding Google Identity Toolkit With Gradle"