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 to my backend build.gradle:
repositories {
mavenCentral()
}
dependencies {
compile 'com.google.apis:google-api-services-identitytoolkit:v3-rev191-1.20.0'
}
After a sync and gradle build I try to added an import:
import com.google.identitytoolkit.GitkitClient;
But I am getting the following errors:
cannot resolve symbol 'identitytoolkit'
and
error: package com.google.identitytoolkit does not exists