I would like to implement an android messaging application like WhatsApp using Amazon AWS services, but I don't know the right service to do this.
Thank you all.
To create a Native Android App that invokes AWS Services, look at using the AWS SDK for Kotlin. This SDK works nicely within an Android Studio Project. To learn how to get up and running, see this AWS tutorial that walks you through building an Android app that (for demonstration purposes), invokes Amazon DynamoDB and SNS.
Creating your first Native Android application using the AWS SDK for Kotlin
Related
I am new to android development and is trying to implement aws sdk in my app. I read the developer documentation of aws but get confused as where to write the code that has been provided their in my android studio project.
AWS recently launched the AWS Mobile Hub, which is an integrated console experience, designed to help people like you get started quickly. Mobile Hub configures your AWS resources and generates a sample Android mobile app project, which uses your resources. You can then use the sample app as a starting point for your own app, or just copy and paste the code you need. This is the fastest and simplest way to integrate with AWS. The sample app demonstrates use of the AWS SDK and gives some additional customized helper code that makes using the AWS SDK easier.
To give AWS Mobile Hub a try, simply go to:
http://aws.amazon.com/mobile
I am developing an android app and want to use azure mobile services.
The Azure portal provides all details regarding Azure subscriptions and creating remote database and also provides a sample app for testing purpose. But how should I use it with my existing Android project? Do I need to dig out code from the Azure sample Android app and copy it to my Android code or is there any other straight clean way? Help appreciated.
A good starter would be this Add Mobile Services to an existing app documentation page: https://azure.microsoft.com/en-us/documentation/articles/mobile-services-ios-get-started-data/
I have spent over 2 days reading over the documentation over at Google Cloud Platform to find out how to hook up my Android app to my Google Cloud Storage.
I don't know if it's just the documentation that's just bad or my lack of understanding but I have really not gotten any closer in implementing this. By contrast I remember it took me a couple of hours implementing Amazon S3 support in an earlier Android project so I'm not a complete idiot.
My requirement:
Upload images to my GCS account
Questions:
Is there a simple "Hello World" type of example for hooking up an Android app to GCS?
I don't need access to users data so does that mean that I don't need OAuth 2.0?
Thanks
You need to use app engine and can use cloud end points to build your application. Detail procedure for creating android app and using app engine as back-end are described here and here
I'm working in Google App Engine and Android Project, using Google Cloud Endpoints,
then when I'm trying to create a new Entity class in App Engine Backend Project,
it freeze when it tries generate Cloud Endpoints Client Library giving me a ReadTimeOutException.
Is a temporary error? I'm seeing that there are a lot problems with Google App Engine, is a technology in which we can trust??
The only way to make work this, it has been using the Google App Engine SDK version 1.7.7.1 (even the version 1.9.3 gives me an error). Good luck guys!!
I want to develop android application like Photofeed application as mentioned on Google cloud sample link or like Instagram. For that I need App Engine SDK but i am not getting how i will achieve this functionality. In my app, i want exact functionalities (uploading image, like and comment on that photo) like Photofeed app shown on that link. For that I'll have to use Google Cloud Storage but Photofeed is for Webapp and i want to develop Mobile app. For that i also referred Mobile back-end starter but not getting much idea. Its quite confusing. Please guide me to develop this application. Is it possible to use Photofeed sample java classes in my android application?
Thank you.
You will need to install Google Plugin for Eclipse and make Android Connected App Engine Application. This is a good starting point.
You can make similar app or any app that connects to GAE as backend in 4 steps as follows:
Make your entity classes: You can use JPA, JDO or Objectify to access the Data Store or use its API directly as done in the sample NoSQL classes (The easiest way is Objectify IMO). Or you can use Google Cloud SQL as done in the SQL classes of the sample ( I never used that in a project so I do not know if there is another way beside the API).
Make REST Endpoints: You can use Google Cloud Endpoints to make REST API for your own app. This will allow you to develop Android, iOS and JavaScript clients in unified way. If needed you can secure it using OAuth too.
Generate Client Libraries: If you are using Eclipse, Google Plugin will provide that in the context menu of the App Engine project so you simply right click and click Generate Client Libraries. It can be done using command line too.
Consume the endpoints in the Android app: This is done really simple as explained here.
Note : You will need a Servlet to upload photos to Google Cloud Storage. You can make use of the one in the sample.