Avoiding the User Waiting Dialog Box in Eclipse / ADT

enter image description here

As shown in the figure, when I develop Android applications with automatic assembly, this dialog sometimes appears. Is there a way to avoid this and make it just go through the process in the background?

This does not always show, but when this happens, I need to wait for it for 5-10 seconds. This is annoying, especially considering that when the project becomes larger, it will go much slower.

UPDATED: I did a little research:

Android compilation is slow (using Eclipse)

Android: eclipse workspace takes a long time to build?

http://groups.google.com/group/android-developers/browse_thread/thread/a16202975510de39

http://oae9.wordpress.com/2011/03/22/android-workaround-for-slow-building-workspace-problem-in-eclipse/

http://www.androidengineer.com/2010/06/using-ant-to-automate-building-android.html

Is there a simpler solution that does not use ANT? Or any other best ANT script that can be easily applied?

+4
source share
1 answer

How about just unchecking "Create automatically." This does not speed up the build process, but does not do it every time you save the file.

You still need to make an assembly that takes a little time, but you will only do it when you really want to compile your project (not every time you make changes to the code).

+1
source

Source: https://habr.com/ru/post/1432831/


All Articles