Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
1.1k views
Welcome To Ask or Share your Answers For Others

1 Answer

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.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...