Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I delete the android and ios folders in Flutter?

Tags:

flutter

I am writing for desktop, so windows, linux, and mac directories are all I need. But I am not sure if I should delete the android and ios folders or not.


1 Answers

Yes, because unless you are compiling your code for this platform, its contents are useless to you, as they are only a boilerplate code for you.

Example, if you enable web support for Flutter, but decide not to compile for web, then removing the folder does literally nothing to your code if you're (for example) developing for Android and iOS only.