Personal Project

Wednesday, June 8, 2016

Useful commands to debug Android APK

// Install Android Apk
adb install apk

// Check Android devices
adb devices
 
// Dump Log 
adb logcat > logfile

// Dump Android and API version
adb shell getprop

[ro.build.version.release]: [4.1.2]   --> Android v 4.1.2
[ro.build.version.sdk]: [16           --> API 16 

   

No comments:

Post a Comment