Flutter does not find android sdk

前端 未结 25 2014
花落未央
花落未央 2020-12-02 09:29

I just tried intalling flutter and since I already had android studio and the android sdk installed I just followed the installation of flutter. Here is my problem: When I r

相关标签:
25条回答
  • 2020-12-02 10:07

    I've set up my Android SDK manually with the command line, and I was able to solve this kind of errors while I tried to set up my development environment, if you want to solve it as I did, just follow the next steps that I posted in a GitHub Comment in a related issue:

    https://github.com/flutter/flutter/issues/19805#issuecomment-478306166

    I hope this can help anyone need it! Bye!

    0 讨论(0)
  • 2020-12-02 10:08

    Flutter provides a command to update the Android SDK path:

    flutter config --android-sdk < path to your sdk >

    OR

    If you are facing this issue --> sdk file is not found in android-sdk\build-tools\28.0.3\aapt.

    You may have probably not installed build tools for this Api level, Which can be installed through this link https://androidsdkmanager.azurewebsites.net/Buildtools

    0 讨论(0)
  • 2020-12-02 10:10

    Flutter say Sdk build tool version(exp:android toolchain - develop for android devices (android sdk 28.0.3)) version=28.0.3 go to home/username/Android/Sdk/build-tools delete this version(28.0.3) and fixed bug

    0 讨论(0)
  • 2020-12-02 10:11

    Flutter provides a command to update the Android SDK path:

    Use flutter config --android-sdk <path-to-your-android-sdk-path>

    0 讨论(0)
  • 2020-12-02 10:12

    Choose the folder to install (I called it BASE_PATH) and use the following commands to install SDK with flutter:

    Install SDK

    cd $BASE_DIR
    mkdir android-sdk
    cd android-sdk
    wget https://dl.google.com/android/repository/commandlinetools-linux-6200805_latest.zip
    unzip commandlinetools-linux-6200805_latest.zip
    ./tools/bin/sdkmanager --sdk_root=$(pwd) "build-tools;28.0.3" "emulator" "platform-tools" "platforms;android-28" "tools"
    

    I used a separate folder for SDK, because it will add parent folders.

    Install Flutter

    cd $BASE_DIR
    wget https://storage.googleapis.com/flutter_infra/releases/stable/linux/flutter_linux_v1.12.13+hotfix.8-stable.tar.xz
    tar xvf flutter_linux_v1.12.13+hotfix.8-stable.tar.xz
    

    Export Vars (you can add them to your .bashrc)

    export ANDROID_SDK=$BASE_DIR/android-sdk
    export ANDROID_PATH=$ANDROID_SDK/tools:$ANDROID_SDK/platform-tools
    export FLUTTER=$BASE_DIR/bin
    export PATH=$PATH:$ANDROID_PATH:$FLUTTER
    

    Check!

    flutter doctor
    
    Doctor summary (to see all details, run flutter doctor -v):
    [✓] Flutter (Channel beta, v1.12.13, on Linux, locale en_US.UTF-8)
    [✓] Android toolchain - develop for Android devices (Android SDK version 28.0.3)
    [!] Android Studio (not installed)
    [✓] VS Code (version 1.31.1)
    [!] Connected device
        ! No devices available
    
    ! Doctor found issues in 2 categories.
    
    0 讨论(0)
  • 2020-12-02 10:13

    Kindly first of all check your latest sdk first step:

    second step:

    Now Run

    run flutter doctor --android-licenses Press Y against each agreement

    run flutter doctor it will work fine.

    0 讨论(0)
提交回复
热议问题