Sun. Nov 24th, 2024

Author: Rajashekar

I’m (Rajashekar) a core Android developer with complimenting skills as a web developer from India. I cherish taking up complex problems and turning them into beautiful interfaces. My love for decrypting the logic and structure of coding keeps me pushing towards writing elegant and proficient code, whether it is Android, PHP, Flutter or any other platforms. You would find me involved in cuisines, reading, travelling during my leisure hours.

Recyclerview Using Retrofit

Api: http://reqres.in/api/users?page=2 { "page": 2, "per_page": 6, "total": 12, "total_pages": 2, "data": [ { "id": 7, "email": "michael.lawson@reqres.in", "first_name": "Michael", "last_name": "Lawson", "avatar": "https://reqres.in/img/faces/7-image.jpg" }, { "id": 8, "email": "lindsay.ferguson@reqres.in",…

Registration Using Retrofit

We will do registration using below API URL: http://reqres.in/api/register Request: {“email”:”raj@gmail.com”,”password”:”raj1256″} Response: {“page”:1,”per_page”:6,”total”:12,”total_pages”:2,”data”:[{“id”:1,”name”:”cerulean”,”year”:2000,” color”:”#98B2D1″,”pantone_value”:”15-4020″},{“id”:2,”name”:”fuchsia rose”,”year”:2001, “color”:”#C74375″, “pantone_value”:”17-2031″},{“id”:3,”name”:”true red”,”year”:2002,”color”:”#BF1932″,”pantone_value”:”19-1664″},{“id”:4,”name”:”aqua sky”,”year”:2003,”color”:”#7BC4C4″,”pantone_value”:”14-4811″},{“id”:5, “name”:”tigerlily”,”year”:2004,”color”:”#E2583E”,”pantone_value”:”17-1456″},{“id”:6,”name”:”blue turquoise”, “year”:2005,”color”:”#53B0AE”,”pantone_value”:”15-5217″}],”support”:{“url”:”https://reqres.in/#support-heading”, “text”:”To keep ReqRes free, contributions towards server costs…

Web Services

Understanding of Web services Web services are open standard (XML, SOAP, HTTP etc.) based Web applications that interact with other web applications for the purpose of exchanging data. Web Services…