Android 바이너리 빌드(Build Type별 구분)
Pre Requirement
1. version 확인
android {
namespace = "com.android.com"
compileSdk = 34
defaultConfig {
applicationId = "com.android.com"
minSdk = 30
targetSdk = 34
versionCode = 1
versionName = "1.0.1"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
}
...
}2. build variants 확인

Debug Build
1. build variants
2. APK build를 기준

3. Output 확인

Release Build
1. build variants
2. AAB build를 기준

3. Key store


4. Output 확인

Build Type을 활용한 앱 빌드(debug, release) 구분
결과물

Last updated