How do I set ANDROID_SDK_HOME environment variable?

前端 未结 10 1634
我在风中等你
我在风中等你 2020-11-27 04:48

I\'m working with Eclipse on Windows 7, x64. I\'m getting an error when running ADT bundle of android development:

Error: Error parsing the AVDs

相关标签:
10条回答
  • 2020-11-27 04:54

    AVD cant find SDK root, possibly because they are in different directories.Set your environment variables as shown in the screenshot below:

    0 讨论(0)
  • 2020-11-27 04:57

    ANDROID_HOME

    Deprecated (in Android Studio), use ANDROID_SDK_ROOT instead.

    ANDROID_SDK_ROOT

    Installation directory of Android SDK package.

    Example: C:\AndroidSDK or /usr/local/android-sdk/

    ANDROID_NDK_ROOT

    Installation directory of Android NDK package. (WITHOUT ANY SPACE)

    Example: C:\AndroidNDK or /usr/local/android-ndk/

    ANDROID_SDK_HOME

    Location of SDK related data/user files.

    Example: C:\Users\<USERNAME>\.android\ or ~/.android/

    ANDROID_EMULATOR_HOME

    Location of emulator-specific data files.

    Example: C:\Users\<USERNAME>\.android\ or ~/.android/

    ANDROID_AVD_HOME

    Location of AVD-specific data files.

    Example: C:\Users\<USERNAME>\.android\avd\ or ~/.android/avd/

    JDK_HOME and JAVA_HOME

    Installation directory of JDK (aka Java SDK) package.

    Note: This is used to run Android Studio(and other Java-based applications). Actually when you run Android Studio, it checks for JDK_HOME then JAVA_HOME environment variables to use.

    0 讨论(0)
  • 2020-11-27 04:57

    Android SDK

    Installing the Android SDK is also necessary. The Android SDK provides you the API libraries and developer tools necessary to build, test, and debug apps for Android.

    Cordova requires the ANDROID_HOME environment variable to be set. This should point to the [ANDROID_SDK_DIR]\android-sdk directory (for example c:\android\android-sdk).

    Next, update your PATH to include the tools/ and platform-tools/ folder in that folder. So, using ANDROID_HOME, you would add both %ANDROID_HOME%\tools and %ANDROID_HOME%\platform-tools.

    Reference : http://ionicframework.com/docs/v1/guide/installation.html

    0 讨论(0)
  • 2020-11-27 04:57

    from command prompt:

    set ANDROID_SDK_HOME=C:\[wherever your sdk folder is]

    should do the trick.

    0 讨论(0)
  • 2020-11-27 04:59

    open your adt and open preferences, then modify directory with your sdk dir, it may help you follow the pic link indication

    enter image description here

    0 讨论(0)
  • 2020-11-27 05:07

    Just set the path to the Android SDK directory

    flutter config --android-sdk c:\android\sdk

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