app bundle 파일을 올렸을 때 error code가 떴다.
You uploaded an APK or Android App Bundle that was signed in debug mode. You need to sign your APK or Android App Bundle in release mode
앱 번들이 디버그 모드로 signed되어 있다는 뜻인데 manifest 단위 혹은 gradle:app에서 release mode에 debug모드를 설정해줬기 때문에 debug모드로 build가 되어 해당 오류가 생긴 것이다.
build.gradle:app
buildTypes {
release {
isDebuggable = false
}
}
AndroidManifest.xml
<application
android:debuggable="false">
</application>
'모바일' 카테고리의 다른 글
[kotlin] 공변성과 반공변성 (0) | 2024.08.29 |
---|---|
테일러 스위프트 상점 페이지 크롤링하는 어플리케이션 만들기 - (1) (2) | 2024.07.25 |
깃헙 액션으로 디스코드에 apk파일 보내기(feat. git tag) (0) | 2024.07.21 |
깃헙액션으로 플레이 스토어에 어플 자동 빌드 및 배포하는 법 (0) | 2024.07.21 |
play store : java keystore로 google에서 제공하는 key대신 보유 key 업로드하는 방법 (0) | 2024.06.20 |
댓글