Upgrading targetSdk from 34 to 35; necessary to check entire code?
05:49 16 Dec 2024

I'm using the newest version of Android Studio on macOS. My app written in Java currently has targetSdk = 34.

When I change it to targetSdk = 35 and Sync Project with Gradle Files I can successfully build and run my app.

But targetSdk = 35 in build.gradle.kts still gives me this message:

It looks like you just edited the targetSdkVersion from 34 to 35 in the editor. Be sure to consult the documentation on the behaviors that change as result of this. The Android SDK Upgrade Assistant can help with safely migrating.

Is this just a standard message or does it mean, there's something wrong with my code? If there're issues with my code, is there a way to make Android Studio show me the relevant code? If this is a standard message, when will it disappear?

BTW: I don't understand why Google is always referring to Android SDK Upgrade Assistant. This isn't an assistant or tool. It has no functionality at all. This is just a documentation. Or am I missing something?

java android android-studio