Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Minimum Android version with flutter

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?

like image 838
GreenTigerEye Avatar asked Feb 15 '18 08:02

GreenTigerEye


People also ask

Does Flutter support Android 11?

The new Google Flutter, stable version 1.22, was recently released. This Flutter UI framework is now compatible with various bug fixes and supports new features for both iOS 14 and Android 11.

Is Flutter support Android 12?

Flutter App not installable from Google store for Android 12 despite being set to targetSDK 31.

Is Flutter compatible with Android?

Flutter is designed to support mobile apps that run on both Android and iOS, as well as interactive apps that you want to run on your web pages or on the desktop.


2 Answers

Flutter support 16. But to run app on Android emulator, use over 19.

  • https://github.com/flutter/flutter/issues/11094
  • https://github.com/flutter/flutter/issues/9108
  • https://github.com/flutter/flutter/issues/8610
like image 91
najeira Avatar answered Sep 17 '22 04:09

najeira


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

like image 39
Günter Zöchbauer Avatar answered Sep 17 '22 04:09

Günter Zöchbauer