I'm going to develop a small-sized system to raise my developing skills.
It consists of the three parts listed below: 1. Web DB 2. Web Page 3. Android App
The main feature is managing the members. (login, just showing the user information)
At this point, I'm wondering about the android app part. Especially, the HTTP.
I found two libraries which are JSoup
and Retrofit
.
As far as I can tell, those libraries are a little bit different.
I think the retrofit is a better fit for me... Up until now I couldn't find a good sample...
Can you give me a hint how to do this?
Retrofit example
Synchronous
Interface
Simple class which follows the singleton design pattern
Call it for example in an IntentService
build.gradle
Or Asynchronous
interface
and do the request with a callback..