Flutter hatası;
Android emülatöre bağlanamıyor ve şu şekilde bir hata alıyorsanız:
- What went wrong:
Could not open settings generic class cache for settings file ‘C:\Users\myuser\Documents\project\android\settings.gradle’ (C:\Users\myuser.gradle\caches\6.7\scripts\1fnwrr8g4rohfp291nvlxj5qe).
BUG! exception in phase ‘semantic analysis’ in source unit ‘BuildScript‘ Unsupported class file major version 60
- Try:
Run with –stacktrace option to get the stack trace. Run with –info or –debug option to get more log output. Run with –scan to get full insights. - Get more help at https://help.gradle.org
BUILD FAILED in 856ms
Running Gradle task ‘assembleDebug’… 1,505ms
Exception: Gradle task assembleDebug failed with exit code 1
Bu Hatanın çözümü için aşağıdaki satırı kopyalayıp Flutter projenizde bulunan android klasörü altındaki gradle.properties dosyasının içine yapıştırın:
org.gradle.java.home=C:\\Program Files\\Android\\Android Studio\\jre
Daha sonra flutter clean deyip flutter run ile projenizi çalıştırabilirsiniz:)