Cannot start Android Studio. Android Studio stuck at the splash screen

后端 未结 8 1017
终归单人心
终归单人心 2021-01-05 11:41

I am not able to start the android studio. I have set java path in environment variables and Android studio is also latest version. I have tried to install and run administr

相关标签:
8条回答
  • 2021-01-05 11:44

    As of January 2016, the most recent canary needs the property written as as:

    -Ddisable.android.first.run=true
    

    otherwise it complains about missing JAVA_HOME. (using windows 10)

    0 讨论(0)
  • 2021-01-05 11:44

    Fixed my Android Studio by changing the system language. You can set yours to English by going to:

    Control Panel->Region

    Under the formats tab, change the format to:

    English(United states)

    Thanks @ravi this also worked for me

    0 讨论(0)
  • 2021-01-05 11:45

    Fixed mine android studio by changing the system language, you can set yours to English go to Control Panel->Region under formats tab change the format to English(United states).

    0 讨论(0)
  • 2021-01-05 11:48

    You have to set these additional PATHs

    ANDROID_HOME = your SDK directory (android-sdk)
    PATH=%PATH%;%ANDROID_HOME%\tools;%ANDROID_HOME%\platform-tools
    
    0 讨论(0)
  • 2021-01-05 11:50

    I had the same issue, I fixed it by changing the system language. Set your language to English by going to the Control Panel/Region. In the Formats tab change the format to English(United states).

    0 讨论(0)
  • 2021-01-05 11:50

    just add this line disable.android.first.run=true at the bottom of the idea.properties file in the bin directory of the installation folder

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