After enabling developer options on the phone, connect the USB cable that came with the phone to the computer. Start adb shell as follows: $ cd android-sdks/platform-tools <enter> $ ./adb shell <enter> Within the shell, you can execute several commands. List all installed packages using the adb in android-platform-tools pm list packages <enter> List all … Continue reading How to connect Android phone in developer mode and use adb
Tag: development
Enable and disable developer options on Android Kitkat
To enable Developer Options on Android KitKat device, go to Settings -> About Phone and tap 7 times on the Build Number. To disable go to Settings -> Apps -> All -> Settings and tap on Clear Data.
Eclipse IDE and Python Development
Python is very easy to learn. However, for newbies, you need a code editor that allows you to view code completion. Code completion helps to develop and learn a new computer language rapidly and that is why, Eclipse is one of the most popular Integrated Development Environments (IDE) out there. To develop programs using Python … Continue reading Eclipse IDE and Python Development