pahlevikun
pahlevikun

Reputation: 103

Flutter: Android Studio not found at /Applications/Contents

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

enter image description here

What should I do?

Upvotes: 9

Views: 9153

Answers (3)

André Lúcio
André Lúcio

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

Rody Davis
Rody Davis

Reputation: 1995

Please run flutter config --android-studio-dir=/Applications/Android\ Studio.app

Upvotes: 51

Abdul Rahman K
Abdul Rahman K

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

Related Questions