Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Error :Avoid hardcoding the debug mode; leaving it out allows debug and release builds to automatically assign one

I wanted to debug the the app i am developing and it is my first app. I followed a video where it showed to set debuggable to true in androidmanifest file and i did so . I am getting this particular error in that androidmanifest.xml file at line of code android:debuggable= "true" Error is

Avoid hardcoding the debug mode; leaving it out allows debug and release builds to automatically assign one

Please someone help me with this.

like image 290
Naveen Kumar Avatar asked Oct 20 '22 09:10

Naveen Kumar


1 Answers

remove this line android:debuggable= "true">

or

Go to Tools > Build Clean to solve your problem

like image 146
Darshan Vithani Avatar answered Oct 29 '22 19:10

Darshan Vithani