debuggable true manifest why we wirte in mainfest code example

Example 1: debuggable true manifest why we wirte in mainfest

Add android:debuggable="true" to the <application> element

Example 2: debuggable true manifest why we wirte in mainfest

this value shows that you have run your application in debug mode. it will be false when you generate a signed apk that will be of release build type.

actually you can use this value to see if the application is running in debugging state (by you while developing you application) or is being used by a user through a signed apk release.

Tags:

Misc Example