How to update your app to API 35 (Android 15) using Android Studio

Tiempo de lectura: 2 minutos <pCurrently, Google requests to update SDK 35 so that our apps remain available in the market (do not delete them but hide them), as well as be able to send new updates. Open app/build.gradle or app/build.gradle.kts, and replace these lines: Before: compileSdkVersion 34 defaultConfig { minSdkVersion 21 targetSdkVersion 34 } After: android { compileSdk = … Read more