Ahmed Osama
Ahmed Osama

Reputation: 812

Will using Android x affect the compatibility of my app?

Hello , I have a simple question ,, if I migrated my Flutter app to Android X , will this effect the minimum android version required to install and run my app ? and how to know the minimum android version required to install my current app in any moment ?

Thanks in advance

Upvotes: 0

Views: 91

Answers (2)

Ravinder Kumar
Ravinder Kumar

Reputation: 8010

You can check min version of your app in your app's build.gradle See picture for more details. enter image description here

Edit: if you have created your project recently then you don't have to worry about the minimum version. although migrating does not effect min version. For more visit here

Upvotes: 2

Abraham Baby
Abraham Baby

Reputation: 104

No android handles androidx in flutter automatically.To know the minimum version of your app,go to apps build.gradle and check the minsdkversion.

Upvotes: 1

Related Questions