Minimum Android version with flutter

FlutterAndroid Version

Flutter Problem Overview


Which minimum android version is supported by flutter? Do some plugins have any effect on which version is not supported?

I tried to run my flutter app on an android emulator, but with the version android 16 it doesn't work and the app crashes. Do I have to change the compile version in some config files or why doesn't it work?

Flutter Solutions


Solution 1 - Flutter

Solution 2 - Flutter

From Flutters FAQ

flutter.dev/docs/resources/faq#what-devices-and-os-versions-does-flutter-run-on

> Mobile operating systems: Android Jelly Bean, v16, 4.1.x or newer, and > iOS 8 or newer. > > Mobile hardware: iOS devices (iPhone 4S or newer) and ARM Android > devices. > > Note Flutter currently does not support building for x86 Android > (issue #9253) directly, however apps built for ARMv7 or ARM64 run fine > (via ARM emulation) on many x86 Android devices. > > We support developing Flutter apps with Android and iOS devices, as > well as with Android emulators and the iOS simulator. > > We test on a variety of low-end to high-end phones but we don’t yet > have an official device compatibility guarantee. > > We believe Flutter works well on tablets. We do not currently > implement all of the tablet-specific adaptations recommended by > Material Design, though we are planning further investment in this > area

Solution 3 - Flutter

The answer to this question also, partly, needs to take into consideration what parts of Android you want to take advantage of in your application. The question of what min version Flutter supports has been answered here a couple of times so I won't answer that, but the Android support libraries will also need specific min versions.

If you plan to use plugins of any kind then you will probably hit multiple issues if your min version is too low. Do you need Firebase? Do you need specific camera functions?

Google also just announced required bumps for min versions with regards to Google Play that you should review.

My advice is to follow documentation, analytics and best practices to determine what you "true" min version should be.

Solution 4 - Flutter

The Flutter documentation has this answer to Android and iOS. Now it says that support: Android Jelly Bean, v16, 4.1.x or newer, and iOS 8 or newer. However, this information can change according to the new Flutter version. By this reason, it is better that you review the next link:

     https://flutter.dev/docs/resources/faq#what-devices-and-os-versions-does-flutter-run-on

Furthermore, it would be best if you analyzed the plugins because they could need higher versions of Android and iOS.

Solution 5 - Flutter

This answer can be useful :

Devices and OS versions on which Flutter runs

Mobile operating systems: Android Jelly Bean, v16, 4.1.x or newer, and iOS 8 or newer.

Mobile hardware: iOS devices (iPhone 4S or newer) and ARM Android devices.

> You can learn more here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionGreenTigerEyeView Question on Stackoverflow
Solution 1 - FlutternajeiraView Answer on Stackoverflow
Solution 2 - FlutterGünter ZöchbauerView Answer on Stackoverflow
Solution 3 - FlutterLukeView Answer on Stackoverflow
Solution 4 - FlutterAndres RiofrioView Answer on Stackoverflow
Solution 5 - FlutterKab AgoudaView Answer on Stackoverflow