Answers for "debuggable true manifest why we wirte in mainfest"

0

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.
Posted by: Guest on February-19-2021
0

debuggable true manifest why we wirte in mainfest

Add android:debuggable="true" to the <application> element
Posted by: Guest on February-22-2021

Browse Popular Code Answers by Language