How to migrate existing flutter project to Android X ? Are there any pro and cons?
I did the same mentioned what has been mentioned by the last two answers. (Refactor -> Migrate to AndroidX ...) but it didn't help really. I still got the error by flutter that it's not a AndroidX project.
I fixed it by adding;
android.enableJetifier=true
android.useAndroidX=true
to android/gradle.properties
Note, there are one in root and the other in android-directory.