Questions tagged [flutter-create]

4 questions
1
vote
2 answers

Flutter Create Spawns app That Contains Unexpected Folders and Files

About a week ago, I created a new flutter project using: flutter create -t app my_app But when I opened the resulting project in the IDE, I was surprised to find the project has some key differences compared to what I'm used to: there is a folder…
Nerdy Bunz
  • 6,040
  • 10
  • 41
  • 100
0
votes
0 answers

Is your project missing an android/app/src/main/AndroidManifest.xml?

After several times run and building my Flutter project suddenly I got the below error: I already have existed the AndroidManifest.xml file package identifier or launch activity not found. Please check /Users/[user]/AndroidStudioProjects/[project…
0
votes
1 answer

"Flutter create" command doesn't add support for Android and iOS

guys. When I want to create new Flutter project with the command flutter create --org com.example.myapp myapp it only creates web folder and not android and ios folders. I also tried to create a Flutter project from Android Studio, but it only…
Draško
  • 2,119
  • 4
  • 41
  • 73
-1
votes
1 answer

How to specify platforms when using "flutter create -t plugin"?

When creating a new Flutter plugin template from the command line using flutter create, if you do not specify any platforms, the default is (as of now), that no platforms are included. What is the actual verbatim command you would type in order to…