ฉันพยายามอัปโหลด apk ของฉันบน Google Play และพบข้อความแสดงข้อผิดพลาด: "คุณอัปโหลด APK ที่ debuggable ได้เพื่อเหตุผลด้านความปลอดภัยคุณต้องปิดใช้งานการดีบักก่อนที่จะสามารถเผยแพร่ใน Google Play เรียนรู้เพิ่มเติมเกี่ยวกับ APK ที่ debuggable"
จากนั้นฉันก็เขียนandroid:debuggable="false"
ในรายการและลองอีกครั้ง ฉันพบข้อผิดพลาดเดียวกันดังนั้นฉันจึงตั้งค่าชุดตัวสร้างจากโมดูลของฉันให้เป็นอิสระและพยายามสร้าง apk อีกครั้ง แต่คราวนี้ข้อผิดพลาดนี้ถูกสร้างขึ้น:
Error:Gradle: Execution failed for task ':app:lintVitalRelease'.
Lint found fatal errors while assembling a release target.
To proceed, either fix the issues identified by lint, or modify your build script as follows:
...
android {
lintOptions {
checkReleaseBuilds false
// Or, if you prefer, you can continue to check for errors in release builds,
// but continue the build even when errors are found:
abortOnError false
}
}
...