CodingKobold
CodingKobold

Reputation: 177

Read File from Google Cloud Storage within Android App

I want to read the content of a text-file that's in my Google Cloud Storage. How can I accomplish this within my Android app?

Do I need to publish my app to Google App Engine in order to do so? If not, will it be easier to access my file if I publish it to Google App Engine?

Upvotes: 0

Views: 1400

Answers (2)

Sunil_raut27
Sunil_raut27

Reputation: 41

you can implement mobile backend stater to your device .

Upvotes: 0

Dalmas
Dalmas

Reputation: 26547

Currently, there isn't any official API for Android, but the XML API will work on any platform : https://developers.google.com/storage/docs/xml-api-overview

You don't need to create an app on Google App Engine, but it depends on what you want to do, if it's just to get static files it's really not necessary.

Upvotes: 1

Related Questions