Get Device IMEI in Android version 10 12:21 0 comments private void getDeviceId(){ try { String deviceId = ""; if (android.os.Build.VERSION.SDK_INT > Build.VERSION_CODES.O_MR1)... Read more
How to Prevent ANR? 17:53 0 comments What is an ANR? When your app performs intensive work in response to user interaction, this single thread model can yield... Read more
Why would a java developer switch to kotlin ? 13:08 0 comments Java is a widely used programing language and form the Basis of android development. There are many reasons you have to switch... Read more
Why we used Singleton Class? 15:39 0 comments Purpose of Singleton: The main purpose of the singleton class is to object creation, limiting the number of objects... Read more
Volley Basic Authorization 13:06 0 comments Basic Authorization : You have to Add { @Overridepublic Map getHeaders() throws AuthFailureError { Map params = new HashMap(); ... Read more