How to Synchronize data on Cloud? - android

I am novice on cloud and i need to synchronize my data(Contact,image,video)
on cloud. But i don't have any code or idea. i have some knowledge about the cloud
computing but but i don't know how it implement in android.
Pls provide me some code or tutorial.
Thanks in advance.

The code depends on what service you want to use. If you are not sure what provider you want to use I suggest you try a cloud-client that supports multiple providers like jclouds.
The quick start guides should get you going quickly.

Related

How to build an autofill service in Kotlin?

I'm a newbie programmer and want to build an autofill service which populates the RemoteViews using Firebase Realtime Database for a personal Password Manager project. I followed the official documentation. However, I'm unable to understand the advanced functionality classes like the Auth class and PackageVerifier class. I also saw this answer, but this implementation is too basic.
My app stores usernames and passwords on Firebase Realtime Database. It would be of great help if someone could provide a guide to achieve the desired functionality.
It would be great if someone could provide a simplified guide. Thank You.
Here's a good guide, but it is limited. https://code.tutsplus.com/tutorials/how-to-use-android-os-autofill-framework--cms-28811

Android development architecture

I want to develop a android app in which the users will post their info about something and that info can be edited by anyone using the app. What kind of knowledge and expertise i would need for this as i'm new to android development.
You need to know the basic UI creation with EditText, TextView and ScrollView. Then you will need to know JSON to send and receive data from the server. You will also need SQLite and SharedPreferences. You can use Retrofit to communicate with the server. Hopefully this is enough. If anything else is required you need to learn it while doing the.
I would suggest you to start off with the app and as you go ahead you will realize what you will require and you can go about learning while you do the app. This is the quickest and according to me the best way to learn.

How to setup a mongoDB server and use it for an android application?

We are developing an android application that needs to communicate with a remote database, in order to sync some Strings. After some research it seems that mongoDB fits all the requirements.
However we are new to back-end and are clueless as to how things actually work. Google wasn't of much help as I couldn't find anything that explains this stuff clearly enough.
From my understanding we need a mongoDB and a REST API server. How do we go about setting these things up to use with android?
A step by step guide and a brief explanation as to what we need would be extremely be helpful.
You can go through following link and use step by step.I think it will be helpful.
Click here A simple CRUD application using Express and MongoDB

Android and Google fusion tables

I want to build a map view with a google fusion table layer, bringing data from a public table. I'm searching for tutorials, infos ... Someone can give me some advises about how I can proceed? Thanks :)
here is my android app that uses fusion tables to sync it's data:
https://jedld#github.com/jedld/GiNote.git
The part where it also lets the user choose the google account to use and the retrieval of an auth token might also interest you.
The easiest way to proceed might be to use the App inventor Fusion Tables Control. It's quite simple and lightweight.
http://appinventor.mit.edu/explore/content/notready.html#FusiontablesControl
Otherwise here is a simple example app in Java
https://code.google.com/p/google-api-java-client/wiki/APIs#Fusion_Tables_API
Hope this helps.

Whats the best solution for a database used in conjunction with Maps in Android?

Could someone please point me in the right direction. My project involves a database where users enter their address and other info from my website. This database is then referenced in my android application to show the locations of these addresses in my database.
I have yet to start and just came up with this idea. My question is, what would be the best method to create a database easily modified through my website (mySQL, php, etc), and also easily referenced easily through Android and the Google Maps API? I need some ideas on the languages I will need to use to create this database and website so I can go buy the necessary books to start reading up.
Thanks so much
I believe the best way for you to go with this one is:
a database cache on the device
that means you can use XML if you don't have many complicated requirements from storing the address
or SQLite if you want to be able to query the database and do more fancy things
on the server side
if you only need to get the data from your server on the device, then a simple XML with a unique address per user should do it
if you need to push addresses from your device to the server then a REST system needs to be implemented
So, now you just need to figure out exactly what you need from your system and then start googleing on one of the solutions I gave you! Good luck! :)
Google App Engine would probably work for that. GAE supports Java and Python. Maybe use the Restlet framework (compatible with GAE) to implement a REST architecture.

Categories

Resources