Thiết lập SDK Android 16
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 Android 16 và kiểm thử ứng dụng theo các thay đổi về hành vi của Android 16, bạn cần thiết lập SDK Android 16. Hãy làm theo hướng dẫn trên trang này để thiết lập SDK Android 16 trong Android Studio, đồng thời tạo và chạy ứng dụng trên Android 16.
Tải Android Studio
SDK Android 16 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 Android 16, hãy sử dụng Android Studio Meerkat | 2024.3.1 trở lên.
Tải Android Studio
Cập nhật cấu hình bản dựng của ứng dụng
Để truy cập vào API Android 16, hãy mở tệp build.gradle
hoặc build.gradle.kts
của ứng dụng rồi cập nhật compileSdk
cho Android 16 như sau:
Groovy
android {
compileSdk = 36
}
Kotlin
android {
compileSdk = 36
}
Android Studio có thể cung cấp thông tin theo bối cảnh về các thay đổi về hành vi thông qua Trợ lý nâng cấp SDK Android.
Khi bạn đã sẵn sàng chọn sử dụng các hành vi mới của thời gian chạy cho Android 16, hãy cập nhật targetSdk
của ứng dụng như sau:
Groovy
android {
defaultConfig {
targetSdk = 36
}
}
Kotlin
android {
defaultConfig {
targetSdk = 36
}
}
Cài đặt SDK theo cách thủ công
Trong Android Studio, bạn có thể cài đặt SDK Android 16 như sau:
- Nhấp vào Tools (Công cụ) > SDK Manager (Trình quản lý SDK).
- Trong thẻ Nền tảng SDK, hãy mở rộng phần Bản dùng thử Android Baklava rồi chọn gói Nền tảng SDK Android Baklava.
- Trong thẻ SDK Tools (Bộ công cụ SDK), hãy mở rộng phần Android SDK Build-Tools 36 (Bộ công cụ xây dựng SDK Android 36) rồi chọn phiên bản
36.x.x
mới nhất.
- Nhấp vào OK để cài đặt SDK.
Các bước tiếp theo
Để tìm hiểu những thay đổi có thể ảnh hưởng đến ứng dụng của bạn cũng như cách kiểm thử những thay đổi này trong ứng dụng, hãy đọc các chủ đề sau:
Để tìm hiểu thêm về các API và tính năng mới có trong Android 16, hãy đọc bài viết Các tính năng của Android 16.
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-08-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-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)."]]