Android studio 2.2.3 启动太慢
Android studio 2.2.3 is too slow when it starts
Android Studio 启动时太慢了。在加载弹出之前需要等待几分钟。我不是在谈论 gradle 大楼,而是 android 本身...
这不是我的第一个 android studio...在格式化我的笔记本电脑之前,我也使用了 android studio(可能是 2.2.1 或 2.2.0),因此我知道需要多少时间来证明加载屏幕。
详细信息我使用第 6 代 I5 cpu、8GB Ram 和 ssd。
虽然您需要升级您的 PC,但您可以采取一些措施来提高它的速度
- 增加 Android Studio 的内存大小:**
打开位于 /bin/studio.vmoptions 的文件并将内容更改为
-Xms128m
-Xmx800m
到
-Xms256m
-Xmx1024m
Xms指定初始内存分配池。您的 JVM 将以 Xms 内存量启动,并将能够使用最大 Xmx 内存量。
保存 studio.vmoptions 文件并重新启动 Android Studio。
- 提高Gradle性能:**
在
中创建一个名为gradle.properties的文件
/home/<username>/.gradle/ (Linux)
/Users/<username>/.gradle/ (Mac)
C:\Users\<username>\.gradle (Windows)
并添加行:
org.gradle.daemon=true
这有很大帮助,org.gradle.daemon
设置为 true Gradle
重用以前构建的计算并在内存中缓存有关项目结构、文件、任务等的信息,因此它不必每次启动整个 Gradle
应用程序。
为了提高 android 工作室的速度,您需要为 android 工作室(Vm 选项)分配额外的 RAM 内存,如 link 中所述 ---> config android studio vm option.官博上写着不能直接编辑
Note that you should never directly edit the studio.vmoptions file found inside the Android Studio program folder. While you can access the file to view Studio's default VM options, editing only your own studio.vmoptions file ensures that you don't override important default settings for Android Studio. Therefore, in your studio.vmoptions file, override only the attributes you care about and allow Android Studio to continue using default values for any attributes you have not changed
Android Studio 启动时太慢了。在加载弹出之前需要等待几分钟。我不是在谈论 gradle 大楼,而是 android 本身... 这不是我的第一个 android studio...在格式化我的笔记本电脑之前,我也使用了 android studio(可能是 2.2.1 或 2.2.0),因此我知道需要多少时间来证明加载屏幕。
详细信息我使用第 6 代 I5 cpu、8GB Ram 和 ssd。
虽然您需要升级您的 PC,但您可以采取一些措施来提高它的速度
- 增加 Android Studio 的内存大小:**
打开位于 /bin/studio.vmoptions 的文件并将内容更改为
-Xms128m
-Xmx800m
到
-Xms256m
-Xmx1024m
Xms指定初始内存分配池。您的 JVM 将以 Xms 内存量启动,并将能够使用最大 Xmx 内存量。
保存 studio.vmoptions 文件并重新启动 Android Studio。
- 提高Gradle性能:**
在
中创建一个名为gradle.properties的文件/home/<username>/.gradle/ (Linux)
/Users/<username>/.gradle/ (Mac)
C:\Users\<username>\.gradle (Windows)
并添加行:
org.gradle.daemon=true
这有很大帮助,org.gradle.daemon
设置为 true Gradle
重用以前构建的计算并在内存中缓存有关项目结构、文件、任务等的信息,因此它不必每次启动整个 Gradle
应用程序。
为了提高 android 工作室的速度,您需要为 android 工作室(Vm 选项)分配额外的 RAM 内存,如 link 中所述 ---> config android studio vm option.官博上写着不能直接编辑
Note that you should never directly edit the studio.vmoptions file found inside the Android Studio program folder. While you can access the file to view Studio's default VM options, editing only your own studio.vmoptions file ensures that you don't override important default settings for Android Studio. Therefore, in your studio.vmoptions file, override only the attributes you care about and allow Android Studio to continue using default values for any attributes you have not changed