This article is for everyone to explain the Android studio installation after launch when the fetching Android SDK component information Timeout solution, interested classmates reference.
Problem Description:
Android Studio is a brand new Android development environment based on IntelliJ idea. Similar to Eclipse adt,android Studio provides integrated Android development tools for development and debugging.
After Android Studio installation is complete, if you launch directly, Android Studio will go to get the Android SDK component information, this process is quite slow and often fails to load, causing Android studio to start up. The solution is not to get the Android SDK component information.
Workaround:
1) Go to the bin directory in the newly installed Android Studio directory. Locate the Idea.properties file and open it with a text editor.
2) Add a line at the end of the idea.properties file: Disable.android.first.run=true, and then save the file.
3) after shutting down Android studio and restarting, you can enter the interface.
Create a new Android project
1) Start the interface after Android studio:
Note: You need to configure the following SDK:
A, click to enter Configure:
B. After entering the interface, click Project Defaults:
C. After entering the interface, click Project Structure:
D. After entering the interface, set the path of the Android SDK and JDK.
2) Click Start a new Android studio project to create an Android project (you can modify the project workspace)
3) Direct Next
4) then the next step
5) then the next step
6) Click Finish to complete the project creation. The overall structure of the project is as follows:
Android Studio installed after fetching Android SDK component information time-out solution