Created
October 25, 2017 13:12
-
-
Save MadinaB/6711f768e11027d38ac7c0933ebdea8b to your computer and use it in GitHub Desktop.
Make android studio run faster
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
1) in AndroidStudio's settings > compile enable checkbox named Compile independent modules in parallel. | |
2) Under Help> Edit Custom VM Options: | |
-Xms1024m | |
-Xmx4096m # <------ increase this to most of your RAM | |
-XX:MaxPermSize=1024m | |
-XX:ReservedCodeCacheSize=440m | |
-XX:+UseCompressedOops | |
-XX:+HeapDumpOnOutOfMemoryError | |
-Dfile.encoding=UTF-8 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment