android - Upload new apk to Production Failed -


upload failed. uploaded debuggable apk. security reasons need disable debugging before can published in google play.

upload new apk.

set debuggable false in buildtype uploading , compile apk again:

buildtypes {     yourbuildtype {         debuggable false     } }  

Comments

Popular posts from this blog

vb.net - How to ignore if a cell is empty nothing -

Sort a complex associative array in PHP -

recursion - Can every recursive algorithm be improved with dynamic programming? -