💡 build.gradle(module) SDK 설정 android { compileSdk 32 defaultConfig { applicationId "com.kyhslam.part2.helloworld" minSdk 21 targetSdk 32 versionCode 1 versionName "1.0" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" } CompileSdk 어떤 안드로이드 SDK 버전으로 앱을 컴파일 할 것인지 지정 앱 개발 당시의 최신 API를 컴파일 SDK로 지정할 것을 권장 minSdk 앱을 사용할 수 있는 최소한의 API레벨 targetSdk 앱이 기기에서 동작할 때 사용하는 API 레벨 (앱이 개발시에 테스..