모바일

play store App bundle error : 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

Patti Smith 2024. 6. 20.

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>

 

 

댓글