I am building a flutter application that is about 70 percent complete and am wondering, how can I tell/set which android/ios versions it will run on? How do you work with this with flutter? Thanks for all your help!
Asked
Active
Viewed 280 times
0
-
https://stackoverflow.com/q/48802841/5557479 – Naveen Avidi Jan 07 '20 at 04:24
1 Answers
0
you can configure your minimum targets for Android and iOS as you would in a native app, depending on your needs for each platform:
- Android: edit
android/app/build.gradle
, changeandroid.defaultConfig.minSdkVersion
. - iOS: Xcode > select your project in the file tree > change the
Deployment Target
.

Tijee
- 388
- 3
- 12