Sir undoubtedly you are incomparable. It would be much better to understand (to all lazy leaners like me) if you provide your lesson code through github. By the by thank you so much..
everything explained very well Awesome tutorial I guess as per Java code convention, variables must declare in camel case like name instead of Name, email instead of Email But you explained the Serialised name very well by using Name not name
Thanks you for this tutorial.. actually i have been using only OKHTTP for REST API calls, but I realized that using retrofit I do not parse the JSON which comes in right? By implementing this methods I really stop writing parse JSON method in my apps. Thanks you.
URGENT: Sir do i need to keep my server "ON" complete day , if my application is running at that time?plzz reply because i want to make an app for commercial purpose using retrofit
sir, there is a problem, i have as your tutorial goes. but when i run the app, i am getting an error like this. 02-14 19:56:17.509 9428-9428/com.ashfanndm.restapicontacts E/RecyclerView: No adapter attached; skipping layout 02-14 19:56:17.527 9428-9428/com.ashfanndm.restapicontacts E/RecyclerView: No adapter attached; skipping layout can i know why this error is coming.
Suppose a request like as: Single fetchAllNotes(); Using list for object of array, suppose there are single row just as object. How to solve this type of problem ? Because I am not sure there is single row or multiple row return from api. How can I solve this problem?
Sir g it's give me an error on get function . On recycler adapter class . And i did not use database. I use json file only . And i give path of my save folder in json . Plz guide me.
Hello all, brief, first thank you Prabeesh for this very sample app, ...euh I copied all files from the video, my code has no errors, but unfortunately the app stops immediately with a message retrofit(app name) keeps stopping...please how to correct this...thank in advance ;-)
Hello world, I am little bit confused about using retrofit library in android. Someone please help me. Thanks In Advance. Is it mandatory to use some other library with retrofit to parse the json data fetched by retrofit or not ? please see this, 1). volley may have image parsing feature but it cannot convert a Json object directly into a POJO (Plain Old Java Object). On the other hand retrofit can automatically convert a JSON object into a POJO, but lacks image parsing. 2). Retrofit makes use of OkHttp (from the same developer) to handle network requests. Also, Retrofit does not have a built-in JSON converter to parse from JSON to Java objects. Instead, it ships support for the following JSON converter libraries to handle that: Gson: com.squareup.retrofit:converter-gson Jackson: com.squareup.retrofit:converter-jackson Moshi: com.squareup.retrofit:converter-moshi
Constraint layout has been recently added and is mostly useless (to much code to add to put elements where you want). Relative layout is the default layout that android studio used for years until now. He simply reverted to default layout.
Change the BASE_URL to your machine's IP, if using XAMPP it should world automatically, but with WAMP you will have to put it online(right click on the icon,put it online)
following this video to try and get some data from mySQL, but am getting this error => "Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'. > com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: retrofit2/BuiltInConverters$BufferingResponseBodyConverter.class", please assit me i have been stuck for days. tried everything
I m getting the error when i intall in my mobile " there is a problem parsing the application" and in my other mobile my app unfortunatenate close. please help me. i used ur code
POST and get method works from the view of website For example: if website is giving result without taking any parameters then we will use POST OR if website is taking some parameters or input we can say that means to use GET method
Hey Guys..., see the desktop icons 7th row 5th column he have corona logo...He is already predicted corona i think this video uploaded since 4years back...
because working on relative and linear layout is easier then constraint layout but constratint layout is responsive for portate and landscape mode both.
At that time I have only 2 weeks left to finish my project and I 'm very stress coz I have no ideas about this. Suddenly I heard the word "aaaah" . and I was like waddd?. At least it make me laugh too.
THANK YOU
What the man you are...!!!!.. really awesome tutorial. Everything is working amazing... Thank you ao much sir..
Awesome video......Thanks for sharing....
u make the android programming simple with clear explanation of all concepts.once again nice video from u thank u sir
Sir undoubtedly you are incomparable. It would be much better to understand (to all lazy leaners like me) if you provide your lesson code through github. By the by thank you so much..
So clear and helpful tutorial
thank you so much sir.
everything explained very well
Awesome tutorial
I guess as per Java code convention, variables must declare in camel case like name instead of Name, email instead of Email
But you explained the Serialised name very well by using Name not name
Nice video 👌 🔥
You r just too good thanks ... kindly make some tutorials retrofit with realm
Nice video sir.
I have a question. Why you use POST instead of GET? As far as I know to show data we use GET.
very nice very clear and easy to understand video tutorial the best tutor better than @slidenurd
very good tutorial..thanks
thanks Prabeesh!! Nice moustache!! Grate vid!!!
very good tutorial, thanks!
Thanks for the amazing tutorial!
Thank you, as usual, great tutorial.
Liked ,how We can give criteria to api .eg. product_code ?
Thanks for sharing your knowledge
very very nice sir.... thanksss..
excellent video, thanks
Can we only use php or there is some alternative
Excellent! Thank You
Thanks you for this tutorial.. actually i have been using only OKHTTP for REST API calls, but I realized that using retrofit I do not parse the JSON which comes in right? By implementing this methods I really stop writing parse JSON method in my apps.
Thanks you.
woow...nice tutorial...
Nice tutorial sir. Can you show us how to use retrofit with firebase please.
URGENT:
Sir do i need to keep my server "ON" complete day , if my application is running at that time?plzz reply because i want to make an app for commercial purpose using retrofit
sir, there is a problem, i have as your tutorial goes. but when i run the app, i am getting an error like this.
02-14 19:56:17.509 9428-9428/com.ashfanndm.restapicontacts E/RecyclerView: No adapter attached; skipping layout
02-14 19:56:17.527 9428-9428/com.ashfanndm.restapicontacts E/RecyclerView: No adapter attached; skipping layout
can i know why this error is coming.
My 6GB Ram is not enough to run Android studio. Will 8 Gb works well with 2.2 GHZ processor (Hp Pavilion G6)??????
What if I have the api in htdocs and the server is my localhost, what should the base_url be in this case?
Suppose a request like as:
Single fetchAllNotes();
Using list for object of array, suppose there are single row just as object. How to solve this type of problem ?
Because I am not sure there is single row or multiple row return from api. How can I solve this problem?
Sir g it's give me an error on get function . On recycler adapter class . And i did not use database. I use json file only . And i give path of my save folder in json . Plz guide me.
If the response is in different json structure(like user details response and other no user reponse), what should we do? please answer
Thanks... Can you please tell me how to insert data to server using Retrofit?
Sir while running it's giving an error, No such method error : No static method metafactory
Can you help me out :)
You can use this script for the server of the init.php missing:
thank your sir
Hello all, brief, first thank you Prabeesh for this very sample app, ...euh I copied all files from the video, my code has no errors, but unfortunately the app stops immediately with a message
retrofit(app name) keeps stopping...please how to correct this...thank in advance ;-)
@SerializedName is not coming automatic , I added retrofit and gson library in gradle file.. ?, also same thing happened with @GET or @POST
Thank you sir....
how to upload 2 images, using 2 different button... to server using retrofit...
Hello world,
I am little bit confused about using retrofit library in android. Someone please help me.
Thanks In Advance.
Is it mandatory to use some other library with retrofit to parse the json data fetched by retrofit or not ?
please see this,
1). volley may have image parsing feature but it cannot convert a Json object directly into a POJO (Plain Old Java Object). On the other hand retrofit can automatically convert a JSON object into a POJO, but lacks image parsing.
2). Retrofit makes use of OkHttp (from the same developer) to handle network requests. Also, Retrofit does not have a built-in JSON converter to parse from JSON to Java objects. Instead, it ships support for the following JSON converter libraries to handle that:
Gson: com.squareup.retrofit:converter-gson
Jackson: com.squareup.retrofit:converter-jackson
Moshi: com.squareup.retrofit:converter-moshi
Why did you change the root layout from constraint to relative?
Constraint layout has been recently added and is mostly useless (to much code to add to put elements where you want). Relative layout is the default layout that android studio used for years until now. He simply reverted to default layout.
sir, how to pass two key for accessing json within same url, using post method
Can you make a tutorial on how to upload pdf and audio files to server using retrofit...
Hi Can you please tell me where to make changes to the existing code in order to run the application on the device instead of AVD.
Thank-You.
Change the BASE_URL to your machine's IP, if using XAMPP it should world automatically, but with WAMP you will have to put it online(right click on the icon,put it online)
following this video to try and get some data from mySQL, but am getting this error => "Error:Execution failed for task ':app:transformClassesWithJarMergingForDebug'.
> com.android.build.api.transform.TransformException: java.util.zip.ZipException: duplicate entry: retrofit2/BuiltInConverters$BufferingResponseBodyConverter.class", please assit me i have been stuck for days. tried everything
In ApiInterface when i used @POST an error say "@pOST " not applicable to filed"
I m getting the error when i intall in my mobile " there is a problem parsing the application"
and in my other mobile my app unfortunatenate close. please help me. i used ur code
FROM WHERE i GET THE PHP FILE THAT YOU ARE USING IN THIS VIDEO
fu**ing write it hhhhhh
Textsize should be in sp
Please create a tutorial about how to do a pagination with a Retrofit. Thanks
Why are we using "POST" request for the getContacts method? We are not posting anything to the API.
POST and get method works from the view of website
For example: if website is giving result without taking any parameters then we will use POST
OR
if website is taking some parameters or input we can say that means to use GET method
Thank you sir
Welcome..
getting issue like No Such instance filed apiInterface pls help!!!!
Sir please create videos about kotlin full
sir plz make a video for run progress bar with percentage in AsyncTask when calling remote server
in the PHP script you have "require 'init.php'; "
were i can find init.php???
thanks
if you find answer please mail me vinaytshetty@gmail.com
This is the file in which you have your DB connections:
//init.php (looks something like this)
Why should the Activity know about ApiInterface?
What if my database is SQL server?
please help me how to prepare any app using reactneative thank you in advance
can i get php codes
I'm getting an error
E/RecyclerView: No adapter attached; skipping layout
Please help me resolve this.
Thankyou!
did you solve it?
the same
hi can the php file be placed any where on computer?
NO
it should be on the server
Sir, Can you push the codes into githhub
OnResponse method is not working !!
hi sir , i have this error can you help me
E/RecyclerView: No adapter attached; skipping layout
add internet permission to your manifest file:
Raed Abada I added this permission but not worked
add your adapter to your recyclerview
did you fix it?
use recyclerView.setAdapter(yourAdapter);
Hey Guys..., see the desktop icons 7th row 5th column he have corona logo...He is already predicted corona i think this video uploaded since 4years back...
what is default ip address to access localhost
10.0.2.2
can you show how reactnative work and how to make application using reactnative
please help me
Someone help me with the php script. Its not working
Why always change to Relative layout from constraint layout. I need UI tutorial in-depth. Anyone can help me on this.
because working on relative and linear layout is easier then constraint layout but constratint layout is responsive for portate and landscape mode both.
any one please tell me how to use retrofit with fragment pageradapter
How to run real device.. mean its ip adress?
in that case use your server ip
Sir can you please start making app using kotlin
Thank you for the suggestion. I will try it
it shows error base url must end with /
Then go to public static final BASE_URL and add "/" at the end.
make a tutorial of getting response from API.
Sure. Upload it soon....
am i the only one who heard "aaah" at 13:46? lol
i did lol you are such a stupid guy
I didnt hear anything
haha!
your comment made me laugh while studying..yeah "aah" is there
At that time I have only 2 weeks left to finish my project and I 'm very stress coz I have no ideas about this. Suddenly I heard the word "aaaah" . and I was like waddd?. At least it make me laugh too.
thank you so much for this tutorial:
can you make a tutorial how to send data to the server?
Tnx in advanced
Sure. I already prepare it. Upload it soon....Thank you for your support
sir help require
do read my comment i have a problem on your tutorial i did all the things right but the problem is hanging there
so
Any body notice corona logo
java.net.SocketTimeoutException: connect timed out
May be some problem with your API url . Did you check whether your API works in Postman software?
Aravindraj Palani, yes I've fixed that. Thank you for your reply.