I Want to upload my apk to google play store.but its Show me error like this.
**You uploaded a debuggable APK. For security reasons you need to disable debugg
I ran into this error and my application did not reference debuggable anywhere. After a little bit of searching, I found that I accidentally had testCoverageEnabled true in my release build type.
debuggable
testCoverageEnabled true
release
release { testCoverageEnabled true ... }
Removing this resolved the issue.