0

I am a newbie to Flutter ( ~ 2 weeks ) and I want to know the answers for the below basic questions.

1. What is the minimum Android version Flutter supports ?

2. How can we build the app for the older Android version ?

3. Do we need to adjust our code if we target for older Android versions ( ex: Kitkat ) or the same code will work for any android version ?

2
  • stackoverflow.com/q/48802841/115145 Commented Feb 10, 2019 at 0:00
  • 1. The referenced SO article only addresses the first question! 2.: You cannot build the app to a lower API level than the min SDK / API, however basically you target any devices at once which are between the minimum and the target API levels. 3. For any of those API levels you don't have to do anything, the Android compatibility libraries and the app distribution system should take care of the compatibility concerns. Unless you are doing some very special thing. Commented Nov 13, 2020 at 21:25

1 Answer 1

0

this Link from Flutter official website explains the minimum SDK part of your question. As for older android phones you just have to enable software rendering using this command flutter run --enable-software-rendering.

Sign up to request clarification or add additional context in comments.

Comments

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.