Android Studio에서 Gradle로 앱을 빌드하면 BuildConfig 클래스가 생성되며, 이 클래스를 통해 Package name, Version, Debug 상태 등의 정보를 얻을 수 있습니다.
BuildConfig
App이 빌드될 때 BuildConfig.java
파일이 생성됩니다.
파일을 보면 다음과 같은 상수들이 있습니다.
public final class BuildConfig {
public static final boolean DEBUG = Boolean.parseBoolean("true");
public static final String APPLICATION_ID = "com.example.example";
public static final String BUILD_TYPE = "debug";
public static final int VERSION_CODE = 1;
public static final String VERSION_NAME = "1.0";
}
이런 상수들중 대부분은 App의 build.gradle
에 있는 defaultConfig에서 가져옵니다.
상수 중에 BUILD_TYPE
은 release 또는 debug 빌드에 따라서 다르게 설정됩니다. DEBUG
또한 build type에 따라 true, false가 리턴됩니다.
android {
compileSdkVersion 30
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.example.example"
minSdkVersion 26
targetSdkVersion 30
versionCode 2
versionName "1.0"
}
....
}
BuildConfig에 상수 추가
BuildConfig에 원하는 상수를 추가하려면 다음과 같이 buildConfigField()
를 사용할 수 있습니다.
android {
...
buildTypes {
release {
buildConfigField("String", "DOWNLOAD_URL", '"https://test.com/release/"')
}
debug {
buildConfigField("String", "DOWNLOAD_URL", '"https://test.com/debug/"')
}
}
...
}
위와 같이 추가하고 빌드를 하면, 코드에서 참조가 가능합니다.
Log.d("Test", "DOWNLOAD_URL: ${BuildConfig.DOWNLOAD_URL}")
DEBUG로 빌드한 앱을 실행해보면 다음과 같이 출력됩니다.
12-23 22:46:14.884 7153 7153 D Test : DOWNLOAD_URL: https://test.com/debug/
다른 자료형의 상수 추가
String외에 boolean이나 int를 추가하려면 다음과 같이 사용할 수 있습니다.
buildConfigField("boolean", "USE_CACHE", "true")
buildConfigField("int", "CACHE_SIZE", "50")
Loading script...
Related Posts
- Android 14 - 사진/동영상 파일, 일부 접근 권한 소개
- Android - adb push, pull로 파일 복사, 다운로드
- Android 14 - 암시적 인텐트 변경사항 및 문제 해결
- Jetpack Compose - Row와 Column
- Android 13, AOSP 오픈소스 다운로드 및 빌드
- Android 13 - 세분화된 미디어 파일 권한
- Android 13에서 Notification 권한 요청, 알림 띄우기
- Android 13에서 'Access blocked: ComponentInfo' 에러 해결
- 에러 해결: android gradle plugin requires java 11 to run. you are currently using java 1.8.
- 안드로이드 - 코루틴과 Retrofit으로 비동기 통신 예제
- 안드로이드 - 코루틴으로 URL 이미지 불러오기
- Android - 진동, Vibrator, VibrationEffect 예제
- Some problems were found with the configuration of task 에러 수정
- Query method parameters should either be a type that can be converted into a database column or a List
- 우분투에서 Android 12 오픈소스 다운로드 및 빌드
- Android - ViewModel을 생성하는 방법
- Android - Transformations.map(), switchMap() 차이점
- Android - Transformations.distinctUntilChanged() 소개
- Android - TabLayout 구현 방법 (+ ViewPager2)
- Android - 휴대폰 전화번호 가져오는 방법
- Android 12 - Splash Screens 알아보기
- Android 12 - Incremental Install (Play as you Download) 소개
- Android - adb 명령어로 bugreport 로그 파일 추출
- Android - adb 명령어로 App 데이터 삭제
- Android - adb 명령어로 앱 비활성화, 활성화
- Android - adb 명령어로 특정 패키지의 PID 찾기
- Android - adb 명령어로 퍼미션 Grant 또는 Revoke
- Android - adb 명령어로 apk 설치, 삭제
- Android - adb 명령어로 특정 패키지의 프로세스 종료
- Android - adb 명령어로 screen capture 저장
- Android - adb 명령어로 System 앱 삭제, 설치
- Android - adb 명령어로 settings value 확인, 변경
- Android 12 - IntentFilter의 exported 명시적 선언
- Android - adb 명령어로 공장초기화(Factory reset)
- Android - adb logcat 명령어로 로그 출력