skip to Main Content

I used Android Studio some years ago. After that time I initialized Windows 10 once and used the migration tool to change my SSD. This time, I needed Android Studio once more for making a Flutter app, but it was gone(I don’t remember removing it myself).

So I installed Android Studio once more and Flutter once more.
But after I make a new flutter project by Android Studio, I can see a blue ribbon at the top of the editor that says ‘Android SDK "Android API 29 Platform" is not found on the disk or corrupted.’

I try something to solve that. :

  • Install Android API 29(Android 10.0("Q")) with the Android SDK manager = not works
  • Click the Configure…(on the blue ribbon) and Click "Download Android SDK" and go on = not works
  • Uninstall the Andriod Studio with uninstaller(remove all settings) and remove all of the left(%userprofile%.gradle, appdatalocalAndroid, program filesAndroid) of it and reinstall Android Studio = not works

Everything is not working. I found one who has a problem like me, but Its solution is not work for me.

How to solve it?

[√] Flutter (Channel stable, 3.13.0, on Microsoft Windows [Version 10.0.19045.3324], locale ko-KR)
[√] Windows Version (Installed version of Windows is version 10 or higher)
[√] Android toolchain - develop for Android devices (Android SDK version 34.0.0)
[X] Chrome - develop for the web (Cannot find Chrome executable at .GoogleChromeApplicationchrome.exe)
    ! Cannot find Chrome. Try setting CHROME_EXECUTABLE to a Chrome executable.
[√] Visual Studio - develop Windows apps (Visual Studio Community 2019 16.11.29)
[√] Android Studio (version 2022.3)
[√] VS Code (version 1.76.2)
[√] Connected device (2 available)
[√] Network resources

5

Answers


  1. To solve the problem, follow the steps on this Link

    Login or Signup to reply.
  2. Most probably you have to download the Android SDK tool (Obsolete) from the SDK Manager

    Login or Signup to reply.
  3. Try this steps :

    Project Structure

    1 – go to project structure
    2- select Modules
    3- choose your -android
    and change or Add SDK of android api 29 or the latest one such Android API 33

    press OK , and close your project and reopen it .
    this is solved with me .

    Login or Signup to reply.
  4. Just to add some steps in @Ali Al-Amrad’s Answer. in The Project Structure => Modules => and select Android API 29 from the Drop down list. If That is not present there then you click on Add to download that . enter image description here

    Login or Signup to reply.
  5. To fix the problem, I installed a previous version of Android Studio [Electric Eel | 2022.1.1 Patch 2] from Android Studio Archives which worked fine and I never saw that error again.

    I’ve done everything suggested on the internet to fix this problem and that error didn’t go away until I downgraded the Android Studio version.

    I had Android Studio [Giraffe | 2022.3.1 Patch 1] which is currently the latest stable version when you try and download it. I am not sure if it’s a bug in that version or what but that fixed it for me.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search