I am a newbie to Flutter ( ~ 2 weeks ) and I want to know the answers for the below basic questions.
Asked
Active
Viewed 3,495 times
0
-
https://stackoverflow.com/q/48802841/115145 – CommonsWare Feb 10 '19 at 00: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. – Csaba Toth Nov 13 '20 at 21:25
1 Answers
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
.

Mazin Ibrahim
- 7,433
- 2
- 33
- 40