Posts

Showing posts with the label JDWP

How To Debug Android Applications Without Using Android Studio IDE | Introduction To Java Debug Wire Protocol

With Android Studio IDE, the debugging of an Android apps is much easier. But if you have decided to develop an Android apps without using any IDE then this blog posts will be helpful for you. See here w hy would anyone wants to develop Android apps or modules without Android Studio? Disclaimer:  This guide is provided "as is" with no warranties with regard to the accuracy and completeness of the information provided herein. I expect you to have an inquisitive mind to try things out, and the patience to first google and try to find answers to simple questions. Introduction to JDB (Java Debugger) JDWP is a very useful tools for debugging Java applications or any JVM-like applications. Since Android programs is basically a Java, we can use then the JDB to debug our Android applications. How To Use The JDB Let's get it to the point and straight to the process of using the JDB. Make sure you have the JDB ...