android icon indicating copy to clipboard operation
android copied to clipboard

Incremental gradle build

Open Plamen5kov opened this issue 8 years ago • 0 comments

problem Whole build process needs to be enabled to build incrementally. Currently, Gradle builds are not completely incremental due to the fact the static binding generator can't adopt incremental changes. If a javascript file is modified, for instance, Gradle should be able to delete and replace the newly generated Java file. The Same logic applies for deleting and adding new files.

solution Make the static binding generator able to apply incremental changes.

  • deleting files
  • adding new files
  • modifying files = delete old + add new

This will enable us to use the full potential of the Gradle incremental build.

Plamen5kov avatar Jul 12 '17 06:07 Plamen5kov