android - When compiling for the "Store Upload" apk under Cordova command line -


before give following command

cordova build --release 

i read must put following inside androidmainfest.xml

android:debuggable="false" 

to make this

<application android:debuggable="false"  android:hardwareaccelerated="true"   android:icon="@drawable/icon"   android:label="@string/app_name"> 

is necessary put attribute android:debuggable="false" ?

if that, error when run command , stops compiling

cordova build --release 

but if not, compiles no errors.