The Android 16 Beta is now available.
Try it out today and let us know what you think!
Thiết lập SDK 12L
Sử dụng bộ sưu tập để sắp xếp ngăn nắp các trang
Lưu và phân loại nội dung dựa trên lựa chọn ưu tiên của bạn.
Để phát triển bằng API 12L và kiểm thử ứng dụng, bạn cần thiết lập SDK 12L.
Hãy làm theo hướng dẫn trên trang này để thiết lập SDK Android 12 trong Android Studio, đồng thời tạo và chạy ứng dụng trên 12L.
Tải Android Studio
SDK 12L có chứa những thay đổi không tương thích với một số phiên bản Android Studio thấp hơn. Để có trải nghiệm phát triển tốt nhất với SDK 12L, hãy sử dụng Android Studio Chipmunk | 2021.2.1 trở lên.
Tải Android Studio
Cài đặt SDK
Trong Android Studio, bạn có thể cài đặt SDK 12L như sau:
- Nhấp vào Tools (Công cụ) > SDK Manager (Trình quản lý SDK), sau đó nhấp vào Show Package Details (Hiện chi tiết gói).
- Trong thẻ SDK Platforms (Nền tảng SDK), hãy mở rộng mục Android 12L ("Sv2") rồi chọn gói Android SDK Platform 32 (Nền tảng SDK Android 32).
- Trong thẻ SDK Tools (Bộ công cụ SDK), hãy mở rộng phần Android SDK Build-Tools 34 (Bộ công cụ bản dựng SDK Android 34) rồi chọn phiên bản
32.x.x
mới nhất.
- Nhấp vào Apply > OK (Áp dụng > OK) để tải xuống và cài đặt các gói đã chọn.
Cập nhật cấu hình bản dựng của ứng dụng
Để truy cập API 12L và kiểm thử khả năng tương thích của ứng dụng với 12L, hãy mở tệp build.gradle
hoặc build.gradle.kts
ở cấp mô-đun, rồi cập nhật compileSdkVersion
và targetSdkVersion
với các giá trị dành cho 12L:
Groovy
android {
compileSdkVersion "32"
defaultConfig {
targetSdkVersion "32"
}
}
Kotlin
android {
compileSdkVersion("32")
defaultConfig {
targetSdkVersion("32")
}
}
Để tìm hiểu thêm về các tính năng và thay đổi trong 12L, hãy xem các tính năng và thay đổi trong 12L.
Nội dung và mã mẫu trên trang này phải tuân thủ các giấy phép như mô tả trong phần Giấy phép nội dung. Java và OpenJDK là nhãn hiệu hoặc nhãn hiệu đã đăng ký của Oracle và/hoặc đơn vị liên kết của Oracle.
Cập nhật lần gần đây nhất: 2025-07-27 UTC.
[[["Dễ hiểu","easyToUnderstand","thumb-up"],["Giúp tôi giải quyết được vấn đề","solvedMyProblem","thumb-up"],["Khác","otherUp","thumb-up"]],[["Thiếu thông tin tôi cần","missingTheInformationINeed","thumb-down"],["Quá phức tạp/quá nhiều bước","tooComplicatedTooManySteps","thumb-down"],["Đã lỗi thời","outOfDate","thumb-down"],["Vấn đề về bản dịch","translationIssue","thumb-down"],["Vấn đề về mẫu/mã","samplesCodeIssue","thumb-down"],["Khác","otherDown","thumb-down"]],["Cập nhật lần gần đây nhất: 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)."]]