I'd like to use google cloud endpoint v2 to connect to App Engine (and eventually google cloud sql (NOT firebase as I'll be making complex queries)) in my android studio (v3.3) project .
The google cloud SDK, OpenAPI, Endpoints configuration is working (it can receive an echo "hello world" through windows PowerShell) and I built the client libraries following this tutorial: https://cloud.google.com/endpoints/docs/frameworks/java/gen_clients
I've imported my client libraries into the Android Studio project file Libs and am currently following this tutorial to call backend APIs from Android Studio Client: https://cloud.google.com/endpoints/docs/frameworks/java/calling-from-android
After editing gradle files, it suggests replacing "Tictactoe" in the code below with the name of your backend API
Tictactoe.Builder builder = new Tictactoe.Builder(
AndroidHttp.newCompatibleTransport(), new GsonFactory(), null);
service = builder.build();
I've spent 8 hours trying to figure what that would be. I can't find any file in the imported libraries that works. I've tried using my Google Cloud project id on its own or followed by .appspot.com but nothing works.
I assume it must be somewhere in my Project File, I just need to know where. And not knowing what it's called makes the search tricky.
Note: the Google Cloud site suggests asking technical questions on stackoverflow