Abdallah
Abdallah

Reputation: 198

Creating cloud storage for android app

I am creating an android app for university which has cloud storage so when the teacher sends a note the student can view it without download it

I want to know if their is any book or tutorials for creating your own cloud storage for android

Upvotes: 1

Views: 366

Answers (1)

JL-V589
JL-V589

Reputation: 1044

You will want to use Google Cloud Storage to store your data. To learn more about GCS, you can check this link.

You will need to have a Google Cloud Storage bucket tied to an App Engine application you are going to develop. From your android code, you will want to call the Cloud Endpoints API for your application to retrieve the data from GCS.

For more info about Cloud Endpoints for Android, you can check this link.

Upvotes: 1

Related Questions