[Android Studio] 프로덕션 환경을 디버깅 가능하게 만들기

망비록.

문제



다음은 에러 내용.
프로덕션 환경을 디버깅할 수 있도록 하고 싶습니다.
Error running 'app'
            Cannot debug application from module app on device emulator-5554.
            This application does not have the debuggable attribute enabled in its manifest.
            If you have manually set it in the manifest, then remove it and let the IDE automatically assign it.
            If you are using Gradle, make sure that your current variant is debuggable.

해결책


build.gradle 에 기재되어 있는 설정 debuggable 를 false 로부터 true 로 변경

build.gradle

    buildTypes {
        release {
            debuggable true //変更


그런 다음 메뉴에서 Build Bundle.
(안드로이드에 익숙하지 않아 이것을 눈치 채지 않고 변경 반영되지 않아 초조했다)


보충



Build Variant를 debug로 변경하는 해결책도 있는 것 같지만, 이것은 이번에 하고 싶었던 것이 아니었다.


참고



앱 빌드 및 실행  | Android 개발자  | Android Developers
android - This application does not have the debuggable attribute enabled in its manifest - Stack Overflow

좋은 웹페이지 즐겨찾기