با مجموعهها، منظم بمانید
ذخیره و طبقهبندی محتوا براساس اولویتهای شما.
برای توسعه با Android 14 API و آزمایش برنامه خود با تغییرات رفتار Android 14، باید Android 14 SDK را راه اندازی کنید. دستورالعمل های این صفحه را دنبال کنید تا Android 14 SDK را در Android Studio راه اندازی کنید و برنامه خود را روی Android 14 بسازید و اجرا کنید.
اندروید استودیو را دریافت کنید
Android 14 SDK شامل تغییراتی است که با برخی از نسخه های پایین تر Android Studio سازگار نیست. برای بهترین تجربه توسعه با Android 14 SDK، از Android Studio Flamingo | استفاده کنید 2022.2.1 یا بالاتر.
در اندروید استودیو، می توانید SDK اندروید 14 را به صورت زیر نصب کنید:
روی Tools > SDK Manager کلیک کنید، سپس روی Show Package Details کلیک کنید.
در تب SDK Platforms ، بخش Android 14.0 ("UpsideDownCake") را گسترش دهید و بسته Android SDK Platform 34 را انتخاب کنید.
در تب ابزار SDK ، بخش Android SDK Build-Tools 34 را گسترش دهید و آخرین نسخه 34.xx را انتخاب کنید.
برای دانلود و نصب بسته های انتخاب شده روی Apply > OK کلیک کنید.
پیکربندی ساخت برنامه خود را به روز کنید
برای دسترسی به APIهای Android 14 و آزمایش سازگاری برنامه خود با Android 14، فایل build.gradle یا build.gradle.kts در سطح ماژول خود را باز کنید و آنها را با مقادیر برای Android 14 به روز کنید. نحوه قالب بندی مقادیر به نسخه آن بستگی دارد. افزونه Android Gradle (AGP) که از آن استفاده می کنید.
AGP 7.0.0 یا بالاتر
اگر از AGP 7.0.0 یا بالاتر استفاده می کنید، فایل build.gradle یا build.gradle.kts برنامه خود را با مقادیر زیر برای Android 14 به روز کنید:
برای اطلاعات بیشتر درباره APIهای جدید و ویژگیهای موجود در Android 14، ویژگیهای Android 14 را بخوانید.
محتوا و نمونه کدها در این صفحه مشمول پروانههای توصیفشده در پروانه محتوا هستند. جاوا و OpenJDK علامتهای تجاری یا علامتهای تجاری ثبتشده Oracle و/یا وابستههای آن هستند.
تاریخ آخرین بهروزرسانی 2025-07-29 بهوقت ساعت هماهنگ جهانی.
[[["درک آسان","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-29 بهوقت ساعت هماهنگ جهانی."],[],[],null,["# Set up the Android 14 SDK\n\nTo develop with Android 14 APIs and test your app with the Android 14 behavior\nchanges, you need to set up the Android 14 SDK. Follow the instructions on this\npage to set up the Android 14 SDK in Android Studio and build and run your app\non Android 14.\n\nGet Android Studio\n------------------\n\nThe Android 14 SDK includes changes that are not compatible with some lower\nversions of Android Studio. For the best development experience with the\nAndroid 14 SDK, use Android Studio Flamingo \\| 2022.2.1 or higher.\n\n\u003cbr /\u003e\n\n[Get Android Studio](/studio)\n\nInstall the SDK\n---------------\n\nWithin Android Studio, you can install the Android 14 SDK as follows:\n\n1. Click **Tools \\\u003e SDK Manager** , then click **Show Package Details**.\n2. In the **SDK Platforms** tab, expand the **Android 14.0 (\"UpsideDownCake\")** section and select the **Android SDK Platform 34** package.\n3. In the **SDK Tools** tab, expand the **Android SDK Build-Tools 34** section and select the latest `34.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 Android 14 APIs and test your app's compatibility with Android 14,\nopen your module-level `build.gradle` or `build.gradle.kts` file, and update\nthem with values for Android 14. How you format the values depends on the\nversion of the Android Gradle plugin (AGP) that you are using.\n| **Note:** If you aren't quite ready to fully support Android 14, you can still perform app compatibility testing by using a debuggable app, an Android 14 device, and the [compatibility framework](/about/versions/14/reference/compat-framework-changes), without changing your app to compile with or target the SDK.\n\n### AGP 7.0.0 or higher\n\nIf you are using AGP 7.0.0 or higher, update your app's `build.gradle` or\n`build.gradle.kts` file with the following values for Android 14: \n\n### Groovy\n\n```groovy\nandroid {\n compileSdk 34\n ...\n defaultConfig {\n targetSdk 34\n }\n}\n```\n\n### Kotlin\n\n```kotlin\nandroid {\n compileSdk = 34\n ...\n defaultConfig {\n targetSdk = 34\n }\n}\n```\n\n### AGP 4.2.0 or lower\n\nIf you are using AGP 4.2.0 or lower, update your app's `build.gradle` or\n`build.gradle.kts` file with the following values for Android 14: \n\n### Groovy\n\n```groovy\nandroid {\n compileSdkVersion \"34\"\n ...\n defaultConfig {\n targetSdkVersion \"34\"\n }\n}\n```\n\n### Kotlin\n\n```kotlin\nandroid {\n compileSdkVersion = \"34\"\n ...\n defaultConfig {\n targetSdkVersion = \"34\"\n }\n}\n```\n\nNext steps\n----------\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/14/behavior-changes-all)\n- [Behavior changes that affect only apps that target Android 14](/about/versions/14/behavior-changes-14)\n\nTo learn more about new APIs and features available in Android 14, read [Android\n14 features](/about/versions/14/features)."]]