为Android应用程序创建云存储

时间:2014-10-11 03:28:48

标签: android google-cloud-storage

我正在为大学创建一个具有云端存储功能的Android应用程序,所以当教师发送笔记时,学生可以在不下载的情况下查看它

我想知道他们是否是为Android创建自己的云存储的任何书籍或教程

1 个答案:

答案 0 :(得分:3)

您需要使用Google云端存储来存储数据。 To learn more about GCS, you can check this link

您需要将Google Cloud Storage存储桶绑定到您要开发的App Engine应用程序。从您的Android代码,您将需要为您的应用程序调用Cloud Endpoints API以从GCS检索数据。

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

相关问题