npx eas build --platform android --profile production
3. 생성된 aab 파일을 '새버전 만들기' App Bundle에 업로드하니 아래와 같이 "8 버전 코드는 이미 사용되었습니다. 다른 버전 코드를 사용해 보세요."라고 뜨는 상황이다.
...
android {
ndkVersion rootProject.ext.ndkVersion
compileSdkVersion rootProject.ext.compileSdkVersion
namespace ''
defaultConfig {
applicationId ''
minSdkVersion rootProject.ext.minSdkVersion
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 9 // 수정
versionName "1.0.9"
...
npx eas build --platform android --profile production