Home > Blockchain >  flutter build apk --release not working after flutter 3.3.10
flutter build apk --release not working after flutter 3.3.10

Time:01-11

After Upgrading flutter to 3.3.09 and then to .10 The Release Build Only Stopped Working With Problems In Local Notifacations Package, After Many Many Many Edits In Gradle And Kotlin I Stopeed The Error From The Package And A New Error Pops-up I've Tried Every Possible Gradle.Wrapper , Gradle , Kotlin Combination And Allways there is a Compatability Problem, Checked enter image description here

CodePudding user response:

Try doing flutter build apk only. It generates app-release.apk also.

Location: build/app/outputs/flutter-apk/app-release.apk

I'm also using flutter v3.3.10. Works for me.

  • Related