I'm working with adding of records to MySQL in Android Studio. In my api, when I successfully insert records, it gives me this JSON
result.
{"status":"success"}
How can I integrate and code this to my Android, that whenever I insert correct values will only check the status. What I know is the old way i.e. the use of HTTPClient
and HTTP Post
which is not available in newer versions.
Thanks!