Mantenha tudo organizado com as coleções
Salve e categorize o conteúdo com base nas suas preferências.
Para desenvolver usando APIs do Android 13 e testar o app com as mudanças de comportamento
da plataforma, é necessário configurar o SDK do Android 13. Siga as instruções desta
página para configurar o SDK do Android 13 no Android Studio e criar e executar o app
no Android 13.
Instalar o Android Studio
O SDK do Android 13 inclui mudanças que não são compatíveis com algumas versões
anteriores do Android Studio. Para ter a melhor experiência de desenvolvimento com o SDK
do Android 13, use o Android Studio Chipmunk | 2021.2.1 ou versões mais recentes.
No Android Studio, é possível instalar o SDK do Android 13 desta forma:
Clique em Tools > SDK Manager e em Show Package Details.
Na guia SDK Platforms, expanda a seção Android 13.0 ("Tiramisu")
e selecione o pacote Android SDK Platform 33.
Na guia SDK Tools, expanda a seção Android SDK Build-Tools 34
e selecione a versão mais recente da 33.x.x.
Clique em Aplicar > OK para fazer o download e instalar os pacotes selecionados.
Atualizar a configuração do build do app
Para acessar as APIs do Android 13 e testar a compatibilidade do app com o Android 13,
abra o arquivo build.gradle ou build.gradle.kts do módulo e o atualize
com valores para o Android 13. A formatação dos valores depende da
versão do Plug-in do Android para Gradle (AGP) que você está usando.
AGP 7.0.0 ou versões mais recentes
Se você estiver usando o AGP 7.0.0 ou versões mais recentes, atualize o arquivo build.gradle ou
build.gradle.kts do app com os valores abaixo para o Android 13:
Groovy
android{compileSdk33defaultConfig{targetSdk33}}
Kotlin
android{compileSdk=33defaultConfig{targetSdk=33}}
AGP 4.2.0 ou versões anteriores
Se você estiver usando o AGP 4.2.0 ou versões anteriores, atualize o arquivo build.gradle ou
build.gradle.kts do app com os valores abaixo para o Android 13:
Para saber mais sobre as novas APIs e os recursos disponíveis no Android 13, leia Recursos do
Android 13.
O conteúdo e os exemplos de código nesta página estão sujeitos às licenças descritas na Licença de conteúdo. Java e OpenJDK são marcas registradas da Oracle e/ou suas afiliadas.
Última atualização 2025-07-27 UTC.
[[["Fácil de entender","easyToUnderstand","thumb-up"],["Meu problema foi resolvido","solvedMyProblem","thumb-up"],["Outro","otherUp","thumb-up"]],[["Não contém as informações de que eu preciso","missingTheInformationINeed","thumb-down"],["Muito complicado / etapas demais","tooComplicatedTooManySteps","thumb-down"],["Desatualizado","outOfDate","thumb-down"],["Problema na tradução","translationIssue","thumb-down"],["Problema com as amostras / o código","samplesCodeIssue","thumb-down"],["Outro","otherDown","thumb-down"]],["Última atualização 2025-07-27 UTC."],[],[],null,["# Set up the Android 13 SDK\n\nTo develop with Android 13 APIs and test your app with the Android 13 behavior\nchanges, you need to set up the Android 13 SDK. Follow the instructions on this\npage to set up the Android 13 SDK in Android Studio and build and run your app\non Android 13.\n\nGet Android Studio\n------------------\n\nThe Android 13 SDK includes changes that are not compatible with some lower\nversions of Android Studio. For the best development experience with the Android\n13 SDK, use Android 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 Android 13 SDK as follows:\n\n1. Click **Tools \\\u003e SDK Manager** , then click **Show Package Details**.\n2. In the **SDK Platforms** tab, expand the **Android 13.0 (\"Tiramisu\")** section and select the **Android SDK Platform 33** package.\n3. In the **SDK Tools** tab, expand the **Android SDK Build-Tools 34** section and select the latest `33.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 13 APIs and test your app's compatibility with Android 13,\nopen your module-level `build.gradle` or `build.gradle.kts` file, and update\nthem with values for Android 13. 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 13, you can still perform app compatibility testing by using a debuggable app, an Android 13 device, and the [compatibility framework](/about/versions/13/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 13: \n\n### Groovy\n\n```groovy\nandroid {\n compileSdk 33\n\n defaultConfig {\n targetSdk 33\n }\n}\n```\n\n### Kotlin\n\n```kotlin\nandroid {\n compileSdk = 33\n\n defaultConfig {\n targetSdk = 33\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 13: \n\n### Groovy\n\n```groovy\nandroid {\n compileSdkVersion \"33\"\n\n defaultConfig {\n targetSdkVersion \"33\"\n }\n}\n```\n\n### Kotlin\n\n```kotlin\nandroid {\n compileSdkVersion = \"33\"\n\n defaultConfig {\n targetSdkVersion = \"33\"\n }\n}\n```\n\nNext steps\n----------\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/13/behavior-changes-all)\n- [Behavior changes that affect only apps that target Android 13](/about/versions/13/behavior-changes-13)\n\nTo learn more about new APIs and features available in Android 13, read [Android\n13 features](/about/versions/13/features)."]]