안드로이드 빌드 설정 업데이트: 빌드 번호 추가 및 Gradle 버전 업데이트

This commit is contained in:
hansoo
2025-03-18 15:43:52 +09:00
parent acb9ae3d70
commit a0d09d6175
2 changed files with 8 additions and 1 deletions

View File

@@ -10,6 +10,8 @@ android {
targetSdkVersion rootProject.ext.targetSdkVersion
versionCode 1
versionName "1.0"
// 빌드 번호 추가
buildConfigField "int", "BUILD_NUMBER", "1"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
aaptOptions {
// Files and dirs to omit from the packaged assets dir, modified to accommodate modern web apps.
@@ -22,6 +24,11 @@ android {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
debug {
// 디버거 대기 방지
debuggable false
jniDebuggable false
}
}
compileOptions {