1

I'm developing android application that needs to store and read data from some shared storage in the cloud.

I'm wondering is there is already existing android API/SDK for pushing and getting data from some abstract "cloud storage" or will I have to implement and host my own server?

Mat
  • 202,337
  • 40
  • 393
  • 406
Ruslan
  • 2,678
  • 3
  • 22
  • 25

1 Answers1

0

A. Look briefly into Amazon AWS SDK for Android, while I dont say you just must use it.

B. If just to store the data, another trivial solution could be to use SFTP server, with some SFTP java client on Android side. SFTP server is trivial to setup (with OpenSSH) and some providers (like Nine, for instance) are also ready to maintain and backup it for you.

Community
  • 1
  • 1
Audrius Meškauskas
  • 20,936
  • 12
  • 75
  • 93