Update Flutter Application to Android with SDK 35

Tiempo de lectura: < 1 minuto

We will see today how we can update a Flutter app to Android with SDK 35.

Snow Dog - Pexels

Edit android/app/build.gradle:

android { compileSdkVersion 35 defaultConfig { ... minSdkVersion 21 targetSdkVersion 35 } }

Verify that you have SDK 35 installed from Android Studio > SDK Manager.

After all:

flutter clean flutter pub get flutter build apk

Leave a Comment