My app before using Flutter had
android:versionCode="17"
android:versionName="17"
In my Flutter application in pubspec.yaml
, I have to set a version as x.y.z
and I am trying set the new version to 19.0.0
.
But when I try to install the application on my device that has a version with android:versionCode="17"
installed, I get an error message saying that the version on device is bigger than version I am trying to install.
How do I fix this?