Category Archives: Android

ADB location windows Android Studio

The exact default location of ADB installation is: You can it to your environment variables for easy access in command line prompt. It could be different if you have changed your directories for tool installation. More at: Android Debug Bridge (adb)  |  Android Studio  |  Android Developers Cheers and Peace out!!!

Get network information android

If you need the almost complete network information then please refer to the code on below link: https://github.com/firebase/firebase-android-sdk/blob/master/transport/transport-backend-cct/src/main/java/com/google/android/datatransport/cct/CctTransportBackend.java The code at link is being used by a google project, so you can trust that it is one of the best ways to determine network information. The code is almost fully cooked, now you just need

Read More

Android get time in milliseconds

If you need to get the time in milliseconds in android then you can use the following code snippet: Now above code snipped will give you time since the system has been rebooted in milliseconds. In some case it would be sufficient to find how may milliseconds has been taken by any operation. Now there

Read More