Google Play에서 APK를 업로드하려고하는데 "디버거 블 APK를 업로드했습니다. 보안상의 이유로 Google Play에 게시하기 전에 디버깅을 비활성화해야합니다. 디버그 가능한 APK에 대해 자세히 알아보십시오."라는 오류 메시지가 표시됩니다.
그런 다음 android:debuggable="false"
매니페스트를 작성하고 다시 시도했습니다. 동일한 오류가 발생하여 모듈에서 빌드 변형을 설정하여 apk를 해제하고 다시 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
}
}
...