I've been making stand-alone Android apps for some time now, but I now want to make an app that requires authentication and have no idea where to start.
For example I would need to do the following:
- Allow a user to create a new account, which would be stored in a remote server.
- The user can log in to his account, and create journal-like entries (photos + text) which would be stored in the remote server.
- The user's previous entries would be downloaded when he logs in.
Can you point me in the right direction?
I already know how to do all this in plain'ol HTML/PHP. Would a web app be a better idea, compared to native?
Thanks!