Tag Archive Flutter

Byphunsanit

Flutter: One or more plugins require a higher Android SDK version error occurs when i run the project

เจอกับ error แบบนี้ One or more plugins require a higher Android SDK version. Fix this issue by adding the following to C:\Users\…\app\build.gradle: android { compileSdkVersion 33 … }

แก้โดยเปิดไฟล์ตาม path ที่เห็นแล้วก็แก้ compileSdkVersion เป็น version ที่เห็นดูก็ใช้ได้

Cr. One or more plugins require a higher Android SDK version error occurs when i run the project

Byphunsanit

Flutter: error unable to find git in your path

ถ้า run flutter doctor -v หรือ flutter pub get แล้วขึ้น error unable to find git in your path แก้ได้โดย

  1. เปิด Windows PowerShell โดยใช้สิทธิ์ administrator
  2. cd ไป folder ที่เก็บงาน เช่น C:\UsersGit\app_develop
  3. git config –global –add safe.directory “C:\UsersGit\app_develop”

จากนั้นทดสอบโดยใช้ flutter doctor -v ได้ตามปกติ

cr: How to solve “Unable to find git in your PATH” on Flutter?