Fast build in Android with eclipse

I have an Android project that is huge in size with over 100 resource files, layouts and lots of codes. It takes about a minute or more to complete assembly. Even when I change one line or just give a space, the whole project takes 1 minute to build. But I want it to take into account only changes and be built quickly when there were very few changes. Is there any way to do this. Any help is appreciated. Thanks.

+4
source share
2 answers

so far I know that partial assemblies are not possible. You can disable "Build Automatically" (not 100% sure that the name, I don’t have Eclipse open now) from Eclipse and start building manually.

+1
source

Could you comment or just run classes that have changed on their own? Perhaps this is one of the reasons they encapsulate so hard with object-oriented programming.

0
source

All Articles