LoginSignup
8
11

More than 5 years have passed since last update.

Android Studioでのビルド速度が約2.5倍になった話

Last updated at Posted at 2017-06-04

環境

AndroidStudio:2.2.3
buildToolsVersion "24.0.0"

やったこと

gradle.propertiesに下記を記述することによりビルドの速度が2倍以上速くなりました。
6分40秒→2分38秒
※初めての端末で「Run」する時の時間です。「Rebuild Project」の場合は1分以下

org.gradle.jvmargs = -Xmx3072m

ビルドの速度改善を行ったアプリではbuild.gradleにて javaMaxHeapSize "2g" を設定していたので、gradleのメモリサイズはそれよりも+1024MB多く設定する必要があったようです。

Android Studioの公式サイトに書かれています。
https://developer.android.com/studio/run/index.html#instant-run

まとめ

ビルドがあまりにも遅いのでPCの買い替えも検討していたのですが、まずはビルドの設定から見直すべきですね!

8
11
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
8
11