Reputation: 103
After installing flutter, when I run
I think I have messed up my Mac regarding Android Studio when I run Flutter doctor reports it says Android Studio not found like below
Android Studio not found at /Applications/Contents
Flutter doctor -v
What should I do?
Upvotes: 9
Views: 9153
Reputation: 111
I believe that when you install Android Studio with JetBrains toolbox, the pwd is different, mine was at "Applications/JetBrains\ Toolbox/Android\ Studio.app/Contents"
So, to solve it:
flutter config --android-studio-dir=/Users/<$YOUR_USER>/Applications/JetBrains\ Toolbox/Android\ Studio.app/Contents
Upvotes: 3
Reputation: 1995
Please run flutter config --android-studio-dir=/Applications/Android\ Studio.app
Upvotes: 51
Reputation: 664
As @Akshay says run flutter config --android-studio-dir=/Application/Android\ Studio.app
. I got the same problem when i ran the config command this way: flutter config --android-studio-dir=/Application/
Upvotes: 0