Is it possible? I have been searching in the Google Cloud documentation and all around the internet, but found nothing. I need to read some values from the Datastore in an Android app made with Android Studio. I tried the Cloud Datastore library but the Gradle build crashes, and tried to use it with App Engine unsuccessfully.
I want to use this database or a similar database, but not Firebase because it would exceed the limits for sure, so you can suggest other databases.
0
votes
1 Answers
0
votes
You can always query the Datastore for entities using the REST API's runQuery method.
If you were willing to build an App Engine backend, you could definitely use Cloud Endpoints to allow your android app to use it and the Datastore. The Cloud Datastore Client Libraries do not work on Android but they will work on App Engine (and in other environments).