2

What is the default for android debuggable, if I do not specify the value in the manifest file?
Will it depend upon version?

What is the default value it is going to take.

Phantômaxx
  • 37,901
  • 21
  • 84
  • 115
user3157084
  • 159
  • 1
  • 3
  • 8
  • possible duplicate of [Android 'debuggable' default value](http://stackoverflow.com/questions/5701343/android-debuggable-default-value) – Melquiades Jan 28 '14 at 07:45

1 Answers1

3

android:debuggable

Whether or not the application can be debugged, even when running on a device in user mode — "true" if it can be, and "false" if not. The default value is "false".

No mention of difference in API level, so min/target SDK versions of your app should not matter.

ozbek
  • 20,955
  • 5
  • 61
  • 84