Home > front end >  Recently upgraded my flutter version to the latest stable version now some apps won't run
Recently upgraded my flutter version to the latest stable version now some apps won't run

Time:10-09

This is what I get when I try to run flutter debug enter image description here

This is the file I don't understand The file where the issue comes from

CodePudding user response:

Change targetSdkVersion in defaultConfig block works for me.

In path: project_folder/android/app/build.gradle

CodePudding user response:

Figured out the issue was from a package I was using (flutter_paystack), checked the GitHub issues and found a solution. https://github.com/wilburt/flutter_paystack/issues/124#issuecomment-1152890758

  • Related