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?
compileSdkVersion
andtargetSdkVersion
to"Tiramisu"
, I got the above error. And it's not about generating signed Apk, the error happens during the build. – MaragretmaralaT
instead ofTiramisu
, it doesn't work too. – MaragretmaralaFailed to find Platform SDK with path: platforms;android-T
- note that I already installed Android SDK Platform Tiramisu. – Maragretmaralaandroid-Tiramisu
is working great. Please post an answer and I will accept it. Thank you for your help. – Maragretmaralaplatforms
dir. – Denote