Android 16 SDK 설정
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
Android 16 API로 개발하고 Android 16 동작 변경사항으로 앱을 테스트하려면 Android 16 SDK를 설정해야 합니다. 이 페이지에 나온 안내를 따라 Android 스튜디오에서 Android 16 SDK를 설정하고 Android 16에서 앱을 빌드하고 실행하세요.
Android 스튜디오 다운로드
Android 16 SDK에는 일부 하위 버전의 Android 스튜디오와 호환되지 않는 변경사항이 포함되어 있습니다. Android 16 SDK를 사용해 최적의 환경에서 개발하려면 Android 스튜디오 Meerkat | 2024.3.1 이상을 사용하세요.
Android 스튜디오 다운로드
앱의 빌드 구성 업데이트
Android 16 API에 액세스하려면 앱의 build.gradle
또는 build.gradle.kts
파일을 열고 Android 16의 compileSdk
을 다음과 같이 업데이트합니다.
Groovy
android {
compileSdk = 36
}
Kotlin
android {
compileSdk = 36
}
Android 스튜디오는 Android SDK 업그레이드 어시스턴트를 통해 동작 변경사항에 관한 컨텍스트 정보를 제공할 수 있습니다.
Android 16의 새로운 런타임 동작을 선택할 준비가 되면 다음과 같이 앱의 targetSdk
를 업데이트하세요.
Groovy
android {
defaultConfig {
targetSdk = 36
}
}
Kotlin
android {
defaultConfig {
targetSdk = 36
}
}
SDK 수동 설치
Android 스튜디오 내에서 다음과 같이 Android 16 SDK를 설치하면 됩니다.
- Tools > SDK Manager를 클릭합니다.
- SDK Platforms 탭에서 Android Baklava Preview 섹션을 펼치고 Android SDK Platform Baklava 패키지를 선택합니다.
- SDK Tools 탭에서 Android SDK Build-Tools 36 섹션을 펼치고 최신
36.x.x
버전을 선택합니다.
- OK를 클릭하여 SDK를 설치합니다.
다음 단계
앱에 영향을 줄 수 있는 변경사항과 앱에서 이러한 변경사항을 테스트하는 방법을 알아보려면 다음 주제를 참고하세요.
Android 16에서 사용할 수 있는 새로운 API와 기능에 관한 자세한 내용은 Android 16 기능을 참고하세요.
이 페이지에 나와 있는 콘텐츠와 코드 샘플에는 콘텐츠 라이선스에서 설명하는 라이선스가 적용됩니다. 자바 및 OpenJDK는 Oracle 및 Oracle 계열사의 상표 또는 등록 상표입니다.
최종 업데이트: 2025-08-27(UTC)
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-08-27(UTC)"],[],[],null,["To develop with Android 16 APIs and test your app with the Android 16 behavior\nchanges, you need to set up the Android 16 SDK. Follow the instructions on this\npage to set up the Android 16 SDK in Android Studio and build and run your app\non Android 16.\n\nGet Android Studio\n\nThe Android 16 SDK includes changes that are not compatible with some lower\nversions of Android Studio. For the best development experience with the Android\n16 SDK, use Android Studio Meerkat \\| 2024.3.1 or higher.\n\n\u003cbr /\u003e\n\n[Get Android Studio](/studio)\n\nUpdate your app's build configuration **Warning:** If your project does not use Android Gradle plugin 8.9.0-rc01 or higher, first run the [Android Gradle plugin Upgrade Assistant](/r/tools/upgrade-assistant/agp-upgrade-assistant) to upgrade to at least AGP 8.9.0-rc01.\n\nTo access Android 16 APIs, open your app's `build.gradle` or `build.gradle.kts`\nfile and update the `compileSdk` for Android 16 as follows: \n\nGroovy \n\n```groovy\nandroid {\n compileSdk = 36\n}\n```\n\nKotlin \n\n```kotlin\nandroid {\n compileSdk = 36\n}\n```\n\nAndroid Studio can provide contextual information about the\nbehavior changes through the\n[Android SDK Upgrade Assistant](/r/studio-ui/ide/android-sdk-upgrade-assistant).\nOnce you're ready to opt in to the new runtime behaviours for Android 16,\nupdate your app's `targetSdk` as follows: \n\nGroovy \n\n```groovy\nandroid {\n defaultConfig {\n targetSdk = 36\n }\n}\n```\n\nKotlin \n\n```kotlin\nandroid {\n defaultConfig {\n targetSdk = 36\n }\n}\n```\n\nManually install the SDK\n\nWithin Android Studio, you can install the Android 16 SDK as follows:\n\n1. Click **Tools \\\u003e SDK Manager**.\n2. In the **SDK Platforms tab** , expand the **Android Baklava Preview** section and select the **Android SDK Platform Baklava** package.\n3. In the **SDK Tools** tab, expand the **Android SDK Build-Tools 36** section and select the latest `36.x.x` version.\n4. Click **OK** to install the SDK.\n\nNext steps\n\nTo learn about the changes that might affect your app, and to learn how to test\nthese changes in your app, read the following topics:\n\n- [Behavior changes that affect all apps](/about/versions/16/behavior-changes-all)\n- [Behavior changes that affect only apps that target Android 16](/about/versions/16/behavior-changes-16)\n\nTo learn more about new APIs and features available in Android 16, read [Android\n16 features](/about/versions/16/features)."]]