সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
Android 12 API-এর সাথে বিকাশ করতে এবং Android 12 আচরণ পরিবর্তনের সাথে আপনার অ্যাপ পরীক্ষা করতে, আপনাকে Android 12 SDK সেট আপ করতে হবে। Android স্টুডিওতে Android 12 SDK সেট আপ করতে এবং Android 12-এ আপনার অ্যাপ তৈরি ও চালাতে এই পৃষ্ঠার নির্দেশাবলী অনুসরণ করুন।
অ্যান্ড্রয়েড স্টুডিও পান
Android 12 SDK-তে এমন পরিবর্তন রয়েছে যা Android স্টুডিওর কিছু নিম্ন সংস্করণের সাথে সামঞ্জস্যপূর্ণ নয়। Android 12 SDK-এর সাথে সেরা বিকাশের অভিজ্ঞতার জন্য, Android Studio Arctic Fox | ব্যবহার করুন 2020.3.1 বা তার বেশি।
SDK প্ল্যাটফর্ম ট্যাবে, Android 12.0 ("S") বিভাগটি প্রসারিত করুন এবং Android SDK প্ল্যাটফর্ম 31 প্যাকেজটি নির্বাচন করুন৷
SDK টুলস ট্যাবে, Android SDK বিল্ড-টুলস 34 বিভাগটি প্রসারিত করুন এবং সর্বশেষ 31.xx সংস্করণ নির্বাচন করুন৷
নির্বাচিত প্যাকেজগুলি ডাউনলোড এবং ইনস্টল করতে প্রয়োগ করুন > ঠিক আছে ক্লিক করুন।
আপনার অ্যাপের বিল্ড কনফিগারেশন আপডেট করুন
Android 12 APIs অ্যাক্সেস করতে এবং Android 12-এর সাথে আপনার অ্যাপের সামঞ্জস্য পরীক্ষা করতে, আপনার মডিউল-স্তরের build.gradle বা build.gradle.kts ফাইলটি খুলুন এবং Android 12-এর মান সহ compileSdkVersion এবং targetSdkVersion আপডেট করুন:
Android 12-এ উপলব্ধ নতুন API এবং বৈশিষ্ট্যগুলি সম্পর্কে আরও জানতে, Android 12 বৈশিষ্ট্যগুলি পড়ুন।
এই পৃষ্ঠার কন্টেন্ট ও কোডের নমুনাগুলি Content License-এ বর্ণিত লাইসেন্সের অধীনস্থ। Java এবং OpenJDK হল Oracle এবং/অথবা তার অ্যাফিলিয়েট সংস্থার রেজিস্টার্ড ট্রেডমার্ক।
2025-07-29 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-29 UTC-তে শেষবার আপডেট করা হয়েছে।"],[],[],null,["# Set up the Android 12 SDK\n\nTo develop with Android 12 APIs and test your app with the Android 12 behavior\nchanges, you need to set up the Android 12 SDK. Follow the instructions on this\npage to set up the Android 12 SDK in Android Studio and build and run your app\non Android 12.\n\nGet Android Studio\n------------------\n\nThe Android 12 SDK includes changes that are not compatible with some lower\nversions of Android Studio. For the best development experience with the Android\n12 SDK, use Android Studio Arctic Fox \\| 2020.3.1 or higher.\n\n[Get Android Studio](/studio)\n\nInstall the SDK\n---------------\n\nWithin Android Studio, you can install the Android 12 SDK as follows:\n\n1. Click **Tools \\\u003e SDK Manager** , then click **Show Package Details**.\n2. In the **SDK Platforms** tab, expand the **Android 12.0 (\"S\")** section and select the **Android SDK Platform 31** package.\n3. In the **SDK Tools** tab, expand the **Android SDK Build-Tools 34** section and select the latest `31.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 12 APIs and test your app's compatibility with Android 12,\nopen your module-level `build.gradle` or `build.gradle.kts` file, and update the\n`compileSdkVersion` and `targetSdkVersion` with values for Android 12: \n\n### Groovy\n\n```groovy\nandroid {\n compileSdkVersion 31\n\n defaultConfig {\n targetSdkVersion 31\n }\n}\n```\n\n### Kotlin\n\n```kotlin\nandroid {\n compileSdkVersion(31)\n\n defaultConfig {\n targetSdkVersion(31)\n }\n}\n```\n| **Note:** If you aren't quite ready to fully support Android 12, you can still perform app compatibility testing by using a debuggable app, an Android 12 device, and the [compatibility framework](/about/versions/12/reference/compat-framework-changes), without changing either your app's `compileSdkVersion` or `targetSdkVersion`.\n\nTo learn about which changes might affect you, and to learn how to test these\nchanges in your app, read the following topics:\n\n- [Behavior changes that affect all apps](/about/versions/12/behavior-changes-all)\n- [Behavior changes that affect only apps that target Android 12](/about/versions/12/behavior-changes-12)\n\nTo learn more about new APIs and features available in Android 12, read [Android\n12 features](/about/versions/12/features)."]]