Last active
September 18, 2020 07:48
-
-
Save Slowhand0309/5caf1d42f0dddc0e09578cba0d1e816a to your computer and use it in GitHub Desktop.
[Android Gradleビルド高速化設定] gradle.propertiesの設定 #Android #Gradle
This file contains hidden or 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
#メモリ -Xmx: AndroidStudio起動時 | |
org.gradle.jvmargs=-Xmx3072M -Xmx4096M -XX:MaxPermSize=2048M | |
#並列ビルドモードを有効 | |
org.gradle.parallel=true | |
#必要な部分をビルド | |
org.gradle.configureondemand=true | |
#デーモンプロセスを使う | |
org.gradle.daemon=true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment