The Android 16 Beta is now available.
Try it out today and let us know what you think!
ตั้งค่า SDK 12L
จัดทุกอย่างให้เป็นระเบียบอยู่เสมอด้วยคอลเล็กชัน
บันทึกและจัดหมวดหมู่เนื้อหาตามค่ากำหนดของคุณ
หากต้องการพัฒนาด้วย API ของ 12L และทดสอบแอป คุณต้องตั้งค่า SDK ของ 12L
ทำตามวิธีการในหน้านี้เพื่อตั้งค่า Android 12 SDK ใน Android
Studio และสร้างและเรียกใช้แอปใน 12L
ดาวน์โหลด Android Studio
12L SDK มีการเปลี่ยนแปลงที่เข้ากันไม่ได้กับ Android Studio เวอร์ชันต่ำกว่าบางเวอร์ชัน หากต้องการประสบการณ์การพัฒนาที่ดีที่สุดด้วย 12L SDK ให้ใช้ Android Studio Chipmunk | 2021.2.1 ขึ้นไป
ดาวน์โหลด Android Studio
ติดตั้ง SDK
ใน Android Studio คุณสามารถติดตั้ง SDK 12L ได้ดังนี้
- คลิกเครื่องมือ > SDK Manager แล้วคลิกแสดงรายละเอียดแพ็กเกจ
- ในแท็บแพลตฟอร์ม SDK ให้ขยายส่วน Android 12L ("Sv2") แล้วเลือกแพ็กเกจ Android SDK Platform 32
- ในแท็บ SDK Tools ให้ขยายส่วน Android SDK Build-Tools 34 และเลือก
32.x.x
เวอร์ชันล่าสุด
- คลิกใช้ > ตกลง เพื่อดาวน์โหลดและติดตั้งแพ็กเกจที่เลือก
อัปเดตการกำหนดค่าบิลด์ของแอป
หากต้องการเข้าถึง API ของ 12L และทดสอบความเข้ากันได้ของแอปกับ 12L ให้เปิดไฟล์ build.gradle
หรือ build.gradle.kts
ระดับโมดูล แล้วอัปเดต compileSdkVersion
และ targetSdkVersion
ด้วยค่าสำหรับ 12L ดังนี้
Groovy
android {
compileSdkVersion "32"
defaultConfig {
targetSdkVersion "32"
}
}
Kotlin
android {
compileSdkVersion("32")
defaultConfig {
targetSdkVersion("32")
}
}
ดูข้อมูลเพิ่มเติมเกี่ยวกับฟีเจอร์และการเปลี่ยนแปลงใน 12L ได้ที่ฟีเจอร์และการเปลี่ยนแปลงต่างๆ ของ 12L
ตัวอย่างเนื้อหาและโค้ดในหน้าเว็บนี้ขึ้นอยู่กับใบอนุญาตที่อธิบายไว้ในใบอนุญาตการใช้เนื้อหา Java และ OpenJDK เป็นเครื่องหมายการค้าหรือเครื่องหมายการค้าจดทะเบียนของ Oracle และ/หรือบริษัทในเครือ
อัปเดตล่าสุด 2025-07-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-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)."]]