All Questions
576 questions
6
votes
2
answers
182
views
Migrated JDO project to google cloud endpoints v2, server returns NoClassDefFoundError
I've tried to migrate a google cloud project using JDO from endpoints v1 to v2. I've followed the migration guide and some solutions here to try to make the datanucleous plugin enhance my classes, and ...
1
vote
1
answer
233
views
Options to load data into Big Query from Google Cloud Storage pro-grammatically in Java?
I have been searching for loading data into Big Query programmatically from Google Cloud Storage. I have done this manually by taking backup of my Google Cloud Storage of one Kind and dumping it into ...
0
votes
3
answers
249
views
Android Studio 3.0 Gradle sync fails ,returns google app engine error
I upgraded to Android Studio 3.0 and after importing my project,Gradle fails to sync.Here is my gradle config.
apply plugin: 'com.android.application'
android {
compileSdkVersion 26
...
0
votes
1
answer
424
views
Google Cloud Vision API shows null object reference
I am trying to build an android application where I am using google cloud vision API for detecting faces. I am following this tutorial. The problem is that, I am unable to produce the toast message ...
2
votes
0
answers
117
views
404 NOT_FOUND after migrating to Cloud Endpoints Frameworks version 2.0
I have followed the following links to migrate from V1 to Cloud Endpoints Frameworks version 2.0:
Part 1
Part 2
I have deployed the backend module to google app engine but when I try to access an ...
0
votes
1
answer
36
views
Authentication of HTTP request from an Android App to A Google Cloud Engine App
I am planning to develop an Android app that will make HTTP request to a REST API (server app) that is hosted on Google App Engine. The data retrieve would be common and visible to all users of the ...
0
votes
0
answers
55
views
GoogleApiClient not connected yet
googleApiClient.connect(); method does not work.
And, googleApiClient.isConnected() is returns always false
I have followed the instructions given below:
https://developers.google.com/identity/sign-...
0
votes
1
answer
210
views
Reduce Google Cloud Endpoints request response header size
I'm using a Google Cloud App Engine and Google Cloud Endpoints API for my backend for an Android app.This is all in Java. I passing Json through to the backend. When I call an API method in the ...
1
vote
1
answer
119
views
How do I get the development servlet of google app engine to find RestApiServlet?
I have an old Android project on which I use a Google app engine back-end.
After resuscitating the project I had to migrate to the V2.0 of the app engine, following https://cloud.google.com/endpoints/...
1
vote
0
answers
102
views
SEVERE: Unable to instrument com.google.apphosting.api.DatastorePb$PutRequest. Security restrictions may not be entirely emulated
I Created a Google Cloud Module in Android Studio as the backend. Now I am trying to run the test locally using this guide. Unfortunately I am getting the following error:
ment.agent.impl.Transformer ...
0
votes
1
answer
1k
views
How to connect to cloud SQL from android studio?
I want to connect to cloud SQL from Android studio. below is the code which I am using to make a connection. Do I require to do any proxy settings from cloud console? Do I need to install SQL on my PC ...
0
votes
1
answer
27
views
Securing endpoints in app engine using Android app
According to this docs when you create the client ids for the endpoints you need a web client id, an android id and the audience parameter set equal to the web client id. Now since in the app you need ...
2
votes
0
answers
592
views
Google Endpoints gapi.client.load custom headers?
In my Google Endpoints project, I need custom headers because I use custom authentication. I do this on the backend-side (endpoints code) as described in this StackOverflow answer. Do get this working ...
0
votes
1
answer
61
views
execute code on start of app engine endpoints
Is there a way to start a piece of code on-start of GAE using Endpoints java?
I know by using servlets we can do that, but using endpoints is it possible? If yes, then how should I proceed. Can't find ...
0
votes
2
answers
44
views
Class not found in Google Endpoint [Java]
How classes are included in Google Endpoint API is not clear to me.
I properly register classes in ofy, like this
ObjectifyService.register(Thing.class);
ObjectifyService.register(AnotherThing.class);...