Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.0k views
in Technique[技术] by (71.8m points)

android - How to make gradle faster

I installed the android sdk and gradle on Windows 8.1.

It is too slow because the build tool takes too much time.

Can I get rid of gradle?

How else can I make it faster?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

There are some thing, which could help a bit:

1) In Settings->Build->Compiler and add Command line options:

  • --offline --parallel

    and VM options:

  • -Xmx2048m -XX:MaxPermSize=512m- -

2) In the file gradle.properties add line org.gradle.daemon=true

3) Give a try to Genymotion emulator.

4) Move project to SSD disk. Or flash disk - build time can drop to half.

Last option is not to use AS and Gradle at all. Switch to Eclipse (make new project, move res and src files + import all libraries you using, for example NDK is easier to set up there), but it's also not that "heavy" and up to date as AS, so probably not much helpful after all.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...