[Android Studio] 프로덕션 환경을 디버깅 가능하게 만들기
1910 단어 안드로이드AndroidStudio
문제
다음은 에러 내용.
프로덕션 환경을 디버깅할 수 있도록 하고 싶습니다.
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
Reference
이 문제에 관하여([Android Studio] 프로덕션 환경을 디버깅 가능하게 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://qiita.com/mgmgmogumi/items/bd2cac6a622246b7f9e5텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)