How do you turn off or turn on debug mode in eclipse. I’m not even sure I’m “in” debug mode, how do I find this out?
There is an attribute android:debuggable set to true in my manifest. If i remove this, is “debug mode” turned off?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If your goal is to make your apk impossible to debug, then yes,
android:debuggable="false"is enough.In Eclipse you can choose to run your project in “debug mode”, which means it will try to attach the debugger to your application. If the android:debuggable attribute is set to false, then it will fail.