I followed this page: https://developer.android.com/about/versions/13/setup-sdk to set up Android 13 SDK.
In my build.gradle
:
android {
compileSdkVersion("Tiramisu")
defaultConfig {
targetSdkVersion("Tiramisu")
}
}
Then I got the error:
> Unsupported value: Tiramisu. Format must be one of:
- android-31
- android-31-ext2
- android-T
- vendorName:addonName:31
I tried to use "33" instead of "Tiramisu", but it's not working. I'm using the latest Android Studio Preview as the instruction.
Is there anyone trying to use Android 13 SDK?