skip to Main Content

I have flutter project. I use Android studio.
I have installed gradle plugin but I don’t see gradle bar, or even in "View" -> "Tool Windows" there is no gradle. Looks like the gradle is not working or can’t detect my project

I opened build.gradle file, I don’t see promt "Sync now".
I looked in menu "File" -> "Sync project with Gradle Files"
I tried to find other mentions in menu

2

Answers


  1. Chosen as BEST ANSWER

    I found decision. I had open my project folder. What is need to do is to open folder of your android app, where is your build.gradle located.(File->Open and choose destination yo your project "/android". "Ok") And also delete "build" folder. after it everything started working, "Sync project with gradle" appears and "Gradle" tab


  2. If you want to find gradle tool under View tab, you should open only the "android" folder with Android Studio IDE.

    If you open the whole Flutter project with Android Studio, you wil not find gradle option under the view tab.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search