AWS Elastic Beanstalk and mobile apps

2019-08-29 03:26发布

I want to create a mobile app for android(first) with back end server on AWS.I will use DynamoDB and other services.The backend application I think should be more easy to build on Elastic Beanstalk maybe in Java-Tomacat.The question is this :

Can I use Android SDK to comunicate the mobile users to the server code deployed on Elastic Beanstalk? How is that possible?

1条回答
姐就是有狂的资本
2楼-- · 2019-08-29 04:10

AWS SDK for Android(http://aws.amazon.com/sdkforandroid/) helps you make those calls. You can build the back-end using Elastic beanstalk. Build REST APIs here and those can be called from your Android Application directly (don't even need AWS SDK on Android).

If you are looking for something specifically for Mobile app backend, checkout: 1. https://parse.com/ 2. https://www.firebase.com/

They will give easy SDK - Primarily for Data storage and retrieval. I have explored Parse SDK and it even supports the offline/online case - will take care of writing back data "when the connection is available".

查看更多
登录 后发表回答