0

I want to delete existing android folder and recreate it.

Based on this post; Recreate Flutter's ios and android folder with Swift and Kotlin

It can be done by

flutter create -a kotlin .

But I don't want kotlin support.

What is the command to re-create android folder without kotlin support.

Janaka
  • 2,505
  • 4
  • 33
  • 57

1 Answers1

5

Kotlin is the default on Android. Your other option is Java, if you want that use

flutter create -a java .
rgisi
  • 858
  • 6
  • 21