Vinod
Vinod

Reputation: 32861

Quick Build In Android with eclipse

I have a android project which is huge in size with more than 100 resource files, layouts and lot of codes. It takes about a minute and even more to completely build. Even when I change a single line or just give a space the whole project takes 1 minute to build. But I want it to consider only the changes and build quickly when there is very less change. Is there a way to do it. Any kind of help is appreciated. Thank you.

Upvotes: 4

Views: 390

Answers (2)

Toni Toni Chopper
Toni Toni Chopper

Reputation: 1851

as long as I know partial builds are not possible. You can disable the "Build Automatically" (not 100% sure about the name, I don't have Eclipse open right now) option from Eclipse and start the build manually.

Upvotes: 1

dylan murphy
dylan murphy

Reputation: 1370

Could you comment out or just run the classes that have changed by themselves? I guess maybe this is one of the reasons they push encapsulation so much with object oriented programming.

Upvotes: 0

Related Questions