prokawsar
prokawsar

Reputation: 170

Stuck on setup wizard of Android Studio

I am stuck on this screen enter image description here

Can't perform any further action. Since I already downloaded an SDK, I downloaded this version enter image description here

Upvotes: 1

Views: 7387

Answers (4)

Yuliia Ashomok
Yuliia Ashomok

Reputation: 8598

Remove Android Studio settings dirs for re-run Setup Wizard.

I my case I removed both

C:\Users\bieli\.AndroidStudio4.0
and
C:\Users\bieli\.android

Upvotes: 1

prokawsar
prokawsar

Reputation: 170

What I found reason for this problem, my SDK was corrupted or damaged. My drive were crashed and I have recovered files by recovering tool, that's why files are get damaged and SDK was not working properly.

Then I redownloaded SDK and its running fine.

Upvotes: 0

Mohit
Mohit

Reputation: 93

Actually android studio try to download all the components of sdk, those which you don't have.
So, it can take a lot time, instead you can disable "Downloading Components" at startup:

  • Go to the installation directory of Android Studio. There you will find a folder named "bin". Inside this folder there is a file named "idea.properties".
  • Open this file and add the following line to the end of the file: disable.android.first.run=true

What this will do is disable the check that Android Studio performs on first run and decides to download all that stuff.

If it asks to save the file at some different place instead of overwriting the original one, please check the access permissions to the file.
Hope this will help you.

Upvotes: 2

Mohit
Mohit

Reputation: 93

Have you specified custom path to SDK in previous step??
if you do not download the SDK you have to go through custom settings and then specify path to SDK.
you are also needed to configure the path to SDK in your environment variables, if you are using window system.

Upvotes: 0

Related Questions