Hi Friends my Application work in all API but when i run in 4.0 it crash ..have any Idea about this problem? any more information add in project for run in 4.0?
Thanks in advance.
Hi Friends my Application work in all API but when i run in 4.0
Share
Super random guess:
You’re doing a Network request on the main thread, doing so will cause an exception in 3.0 and later.
Use an AsyncTask or Thread and Handler to move the request onto another thread.
Since you’re doing this on a splash screen, don’t advance to the next part until the request is done, but put a progress indicator to show something is happening in the background.