How Can I Set Android:debuggable False
I want change debuggable properties to false. BuildConfig.DEBUG This line always return true. i tried add Android:debuggable false in androidmanifest.xml but nothing change. and
Solution 1:
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.
Post a Comment for "How Can I Set Android:debuggable False"