Can't find SDK folder inside Android studio path, and SDK manager not opening

前端 未结 15 636
情深已故
情深已故 2020-12-29 04:15

I have installed Android Studio for the millionth time but when i go to C:\\Program Files\\Android\\Android Studio , i can\'t find any folder named \"SDK\" , can\'t find it

相关标签:
15条回答
  • 2020-12-29 04:28

    Make sure all the folders are visible. click start>control panel>Appearance and Personalization>Show hidden files and folders then click "Show hidden files, folders and drives" The file should be in C:\Users\Username\AppData\Local\Android as mentioned above. otherwise you can check by opening Android SDK Manager - top left under SDK path.

    0 讨论(0)
  • 2020-12-29 04:28

    If your are using android studio go to file >> project structure on the left pane press on SDK location . you will find the path where your sdk is located

    0 讨论(0)
  • 2020-12-29 04:30

    If SDK folder is present in system, one can find in C:\Users\%USERNAME%\AppData\Local\Android

    If Android/SDK folder is not found Once done with downloading and installing Android Studio, you need to launch studio. On launching Android studio for the first time, we get option to download further more components, in that we have SDK. On downloading components one can find SDK under Appdata (C:\Users\%USERNAME%\AppData\Local\Android)

    0 讨论(0)
  • 2020-12-29 04:30

    When you install the android studio just by downloading from https://developer.android.com/studio/install.html sometimes sdk folder will not get appear in C:\Users\home\AppData\Local\Android Location.. But to set the android studio we need to set the path for android on this location. So simply 1) start the android setup.
    2) follow the instruction and android studio will automatically download the sdk folder by itself. (it will show the window like "Downloading Components"). After completing that installation check the above path again. sdk folder will get appear now.

    0 讨论(0)
  • 2020-12-29 04:34

    So I was trying to root one of my old phones and process required Android SDK. When I searched Android SDK, all i could do was download and install Android Studio. Everything went fine and smooth, till I tried to look for SDK in installation. I could not find it under Android Studio installation. But after a little search on Google and Android Studio configuration on my computer, I was able to find it at

            C:\Users\username\Android\sdk
    

    I hope that helps.

    0 讨论(0)
  • 2020-12-29 04:39

    System: Ubuntu 16.04 LTS, yet you can try these steps in accordance to your respective systems.

    If there is an SDK file present, it should be most likely found at /home/USERNAME/Android/sdk

    USERNAME is to be replaced by your username

    If there is none, check the specified sdk path for the project in android studio. File > Project Structure > sdk path

    The sdk directory should be present in the specified path. In case, it is not there, open the file: PROJECT_DIRECTORY/android/local.properties

    PROJECT_DIRECTORY needs to be replaced by your project name.

    If the file is not there, create it. Then add the following line depending on where you find the sdk directory.

    If sdk is there at /home/USERNAME/Android/: add the line: sdk.dir = /home/tanya/Android/sdk

    If sdk is not there at /home/USERNAME/Android/: add the line: sdk.dir = /home/tanya/Android/

    If the path specified for sdk directory in 'Project Structure' is entirely different and the sdk directory is present at the specified location, add the line: sdk.dir = SPECIFIED_SDK_PATH

    Add the specified sdk path in place of SPECIFIED_SDK_PATH

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