Konfigurowanie pakietu SDK do Androida 15
Zadbaj o dobrą organizację dzięki kolekcji
Zapisuj i kategoryzuj treści zgodnie ze swoimi preferencjami.
Aby tworzyć aplikacje z użyciem interfejsów API Androida 15 i testować je z uwzględnieniem zmian w zachowaniu Androida 15, musisz skonfigurować pakiet SDK Androida 15. Aby skonfigurować pakiet Android 15 SDK w Android Studio oraz skompilować i uruchomić aplikację na Androidzie 15, wykonaj instrukcje podane na tej stronie.
Pobieranie Android Studio
Pakiet SDK Androida 15 zawiera zmiany, które są niezgodne z niektórymi starszymi wersjami Android Studio. Aby zapewnić sobie jak najlepsze wrażenia podczas tworzenia aplikacji za pomocą pakietu Android
15 SDK, użyj wersji Android Studio Koala Feature Drop | 2024.1.2 lub nowszej.
Pobierz Android Studio
Wypróbuj Androida 15
Jeśli nie masz jeszcze w pełni gotowej aplikacji obsługującej Androida 15, możesz przeprowadzić testy zgodności aplikacji, korzystając z aplikacji z możliwością debugowania, urządzenia z Androidem 15 (w tym urządzeń wirtualnych) i ramy zgodności, bez konieczności zmiany aplikacji w celu skompilowania jej z uwzględnieniem pakietu SDK lub ukierunkowania na niego.
Aktualizowanie konfiguracji kompilacji aplikacji
Aby uzyskać dostęp do interfejsów API Androida 15, otwórz plik build.gradle
lub build.gradle.kts
aplikacji i zaktualizuj plik compileSdk
na potrzeby Androida 15 w ten sposób:
Groovy
android {
compileSdk = 35
}
Kotlin
android {
compileSdk = 35
}
Android Studio może wyświetlać informacje kontekstowe o zmianach zachowania za pomocą Asystenta uaktualniania pakietu Android SDK.
Gdy wszystko będzie gotowe do włączenia nowych zachowań w czasie wykonywania na Androidzie 15, zaktualizuj targetSdk
aplikacji w ten sposób:
Groovy
android {
defaultConfig {
targetSdk = 35
}
}
Kotlin
android {
defaultConfig {
targetSdk = 35
}
}
Ręczne instalowanie pakietu SDK
W Android Studio możesz zainstalować pakiet SDK Androida 15 w ten sposób:
- Kliknij Narzędzia > Menedżer pakietu SDK, a potem Pokaż szczegóły pakietu.
- Na karcie Platformy pakietu SDK rozwiń sekcję Android API 35 i wybierz pakiet Android SDK Platform 35.
- Na karcie Narzędzia SDK rozwiń sekcję Narzędzia Android SDK Build-Tools 35 i wybierz najnowszą wersję
35.x.x
.
- Aby zainstalować pakiet SDK, kliknij OK.
Dalsze kroki
Aby dowiedzieć się więcej o zmianach, które mogą mieć wpływ na Twoją aplikację, oraz o sposobach testowania tych zmian, przeczytaj te artykuły:
Więcej informacji o nowych interfejsach API i funkcjach dostępnych w Androidzie 15 znajdziesz w artykule Funkcje Androida 15.
Treść strony i umieszczone na niej fragmenty kodu podlegają licencjom opisanym w Licencji na treści. Java i OpenJDK są znakami towarowymi lub zastrzeżonymi znakami towarowymi należącymi do firmy Oracle lub jej podmiotów stowarzyszonych.
Ostatnia aktualizacja: 2025-07-27 UTC.
[[["Łatwo zrozumieć","easyToUnderstand","thumb-up"],["Rozwiązało to mój problem","solvedMyProblem","thumb-up"],["Inne","otherUp","thumb-up"]],[["Brak potrzebnych mi informacji","missingTheInformationINeed","thumb-down"],["Zbyt skomplikowane / zbyt wiele czynności do wykonania","tooComplicatedTooManySteps","thumb-down"],["Nieaktualne treści","outOfDate","thumb-down"],["Problem z tłumaczeniem","translationIssue","thumb-down"],["Problem z przykładami/kodem","samplesCodeIssue","thumb-down"],["Inne","otherDown","thumb-down"]],["Ostatnia aktualizacja: 2025-07-27 UTC."],[],[],null,["# Set up the Android 15 SDK\n\nTo develop with Android 15 APIs and test your app with the Android 15 behavior\nchanges, you need to set up the Android 15 SDK. Follow the instructions on this\npage to set up the Android 15 SDK in Android Studio and build and run your app\non Android 15.\n\nGet Android Studio\n------------------\n\nThe Android 15 SDK includes changes that are not compatible with some lower\nversions of Android Studio. For the best development experience with the Android\n15 SDK, use Android Studio Koala Feature Drop \\| 2024.1.2 or higher.\n\n\u003cbr /\u003e\n\n[Get Android Studio](/studio)\n\nTry out Android 15\n------------------\n\nIf you aren't quite ready to fully support Android 15, you can still\nperform app compatibility testing by using a debuggable app, an Android 15\ndevice (including [virtual devices](/studio/run/managing-avds)), and the [compatibility framework](/about/versions/15/reference/compat-framework-changes),\nwithout changing your app to compile with or target the SDK.\n\nUpdate your app's build configuration\n-------------------------------------\n\n| **Warning:** If your project does not use Android Gradle plugin 8.6.1 or higher, first run the [Android Gradle plugin Upgrade Assistant](/r/tools/upgrade-assistant/agp-upgrade-assistant) to upgrade to at least AGP 8.6.1.\n\nTo access Android 15 APIs, open your app's `build.gradle` or `build.gradle.kts`\nfile and update the `compileSdk` for Android 15 as follows: \n\n### Groovy\n\n```groovy\nandroid {\n compileSdk = 35\n}\n```\n\n### Kotlin\n\n```kotlin\nandroid {\n compileSdk = 35\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 15,\nupdate your app's `targetSdk` as follows: \n\n### Groovy\n\n```groovy\nandroid {\n defaultConfig {\n targetSdk = 35\n }\n}\n```\n\n### Kotlin\n\n```kotlin\nandroid {\n defaultConfig {\n targetSdk = 35\n }\n}\n```\n\nManually install the SDK\n------------------------\n\nWithin Android Studio, you can install the Android 15 SDK as follows:\n\n1. Click **Tools \\\u003e SDK Manager** , then click **Show Package Details**.\n2. In the **SDK Platforms tab** , expand the **Android API 35** section and select the **Android SDK Platform 35** package.\n3. In the **SDK Tools** tab, expand the **Android SDK Build-Tools 35** section and select the latest `35.x.x` version.\n4. Click **OK** to install the SDK.\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/15/behavior-changes-all)\n- [Behavior changes that affect only apps that target Android 15](/about/versions/15/behavior-changes-15)\n\nTo learn more about new APIs and features available in Android 15, read [Android\n15 features](/about/versions/15/features)."]]