The Android 16 Beta is now available.
Try it out today and let us know what you think!
12L SDK 설정
컬렉션을 사용해 정리하기
내 환경설정을 기준으로 콘텐츠를 저장하고 분류하세요.
12L API로 개발하고 앱을 테스트하려면 12L SDK를 설정해야 합니다.
이 페이지에 나온 안내를 따라 Android 스튜디오에서 Android 12 SDK를 설정하고 12L에서 앱을 빌드하고 실행하세요.
Android 스튜디오 다운로드
12L SDK에는 이전 버전의 Android 스튜디오와 호환되지 않는 변경사항이 포함되어 있습니다. 12L SDK와 함께 최상의 개발 환경을 마련하려면 Android 스튜디오 Chipmunk | 2021.2.1 이상을 사용하세요.
Android 스튜디오 다운로드
SDK 설치
Android 스튜디오 내에서 다음과 같이 12L SDK를 설치하면 됩니다.
- Tools > SDK Manager를 클릭한 다음 Show Package Details를 클릭합니다.
- SDK Platforms 탭에서 Android 12L('Sv2') 섹션을 펼치고 Android SDK Platform 32 패키지를 선택합니다.
- SDK Tools 탭에서 Android SDK Build-Tools 34 섹션을 펼치고 최신
32.x.x
버전을 선택합니다.
- Apply > OK를 클릭하여 선택한 패키지를 다운로드하고 설치합니다.
앱의 빌드 구성 업데이트
12L API에 액세스하여 12L과 앱의 호환성을 테스트하려면 모듈 수준 build.gradle
또는 build.gradle.kts
파일을 열고 12L 값으로 compileSdkVersion
과 targetSdkVersion
을 업데이트합니다.
Groovy
android {
compileSdkVersion "32"
defaultConfig {
targetSdkVersion "32"
}
}
Kotlin
android {
compileSdkVersion("32")
defaultConfig {
targetSdkVersion("32")
}
}
12L의 기능 및 변경사항에 관한 자세한 내용은 12L 기능 및 변경사항을 참고하세요.
이 페이지에 나와 있는 콘텐츠와 코드 샘플에는 콘텐츠 라이선스에서 설명하는 라이선스가 적용됩니다. 자바 및 OpenJDK는 Oracle 및 Oracle 계열사의 상표 또는 등록 상표입니다.
최종 업데이트: 2025-07-27(UTC)
[null,null,["최종 업데이트: 2025-07-27(UTC)"],[],[],null,["# Set up the 12L SDK\n\nTo develop with the 12L APIs and test your app, you need to set up the 12L SDK.\nFollow the instructions on this page to set up the Android 12 SDK in Android\nStudio and build and run your app on 12L.\n\nGet Android Studio\n------------------\n\nThe 12L SDK includes changes that are not compatible with some lower versions of\nAndroid Studio. For the best development experience with the 12L SDK, use\nAndroid Studio Chipmunk \\| 2021.2.1 or higher.\n\n[Get Android Studio](/studio)\n\nInstall the SDK\n---------------\n\nWithin Android Studio, you can install the 12L SDK as follows:\n\n1. Click **Tools \\\u003e SDK Manager** , then click **Show Package Details**.\n2. In the **SDK Platforms** tab, expand the **Android 12L (\"Sv2\")** section and select the **Android SDK Platform 32** package.\n3. In the **SDK Tools** tab, expand the **Android SDK Build-Tools 34** section and select the latest `32.x.x` version.\n4. Click **Apply \\\u003e OK** to download and install the selected packages.\n\nUpdate your app's build configuration\n-------------------------------------\n\nTo access 12L APIs and test your app's compatibility with 12L, open your\nmodule-level `build.gradle` or `build.gradle.kts` file, and update the\n`compileSdkVersion` and `targetSdkVersion` with values for 12L: \n\n### Groovy\n\n```groovy\nandroid {\n compileSdkVersion \"32\"\n\n defaultConfig {\n targetSdkVersion \"32\"\n }\n}\n```\n\n### Kotlin\n\n```kotlin\nandroid {\n compileSdkVersion(\"32\")\n\n defaultConfig {\n targetSdkVersion(\"32\")\n }\n}\n```\n\nTo learn more about the features and changes in 12L, see [12L features and\nchanges](/about/versions/12/12L/summary)."]]