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 Studio 中設定 Android 12 SDK,並在 12L 上建構並執行應用程式。
取得 Android Studio
12L SDK 包含與部分舊版 Android Studio 不相容的變更。為了在 12L SDK 中獲得最佳開發體驗,請使用 Android Studio Chipmunk | 2021.2.1 以上版本。
取得 Android Studio
安裝 SDK
在 Android Studio 中,您可以依照下列方式安裝 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
檔案,然後將 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 (世界標準時間)。
[null,null,["上次更新時間:2025-07-27 (世界標準時間)。"],[],[],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)."]]