I was doing some basic stuff with Flutter when I received the Android Studio update Arctic Fox. I just updated. When I ran my app (which was fine before the upgrade) just after the update this error appeared.
flutter doctor
output is here.
java version is
In the Project Structure in Android Studio I cannot set Java SDK as seen below.
I found this question and so many others on the Internet while trying to fix the issue, I could not find the solution yet. Can someone help me to fix this please.
2
Answers
This is fixed in the master branch of flutter. For now you can switch to master branch and later moved to stable when the code is merged to stable.
Due to the JDK folder change in new Arctic Fox, flutter needed this update. After running, you can try
flutter doctor
it should sayNo issues found!
.The answer given by @kushverma definitely is helpful but since the master version changes from day to day, it is not stable enough to work on. this issue is also fixed in the "beta" channel which is more stable and is prone to fewer issues. Hope this is helpful to anyone who is having this issue.