Add support for incremental annotation processing#1546
Merged
JakeWharton merged 1 commit intoJakeWharton:masterfrom Sep 5, 2019
Merged
Add support for incremental annotation processing#1546JakeWharton merged 1 commit intoJakeWharton:masterfrom
JakeWharton merged 1 commit intoJakeWharton:masterfrom
Conversation
0970fb3 to
7e1310f
Compare
This commit adds incremental annotation processing support to Butterknife. More specifically, it makes Butterknife an isolating annotation processor. More information about what this means can be found at https://docs.gradle.org/current/userguide/java_plugin.html#isolating_annotation_processors.
7e1310f to
3f675f4
Compare
Contributor
|
Does it work incrementally when a subclass is modified but its superclass is unchanged ? |
Contributor
Author
|
Support for finding parent bindings in .class files (and classpath) has been added in #1545, so that use-case should work. |
Contributor
|
It's great then. Thx for adding these nice and long awaited features.
…On Thu, Sep 5, 2019, 03:25 Ivan Gavrilovic, ***@***.***> wrote:
Support for finding parent bindings in .class files (and classpath) has
been added in #1545 <#1545>,
so that use-case should work.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#1546?email_source=notifications&email_token=AAN7PXNSIGFZFHIMC6H2O3TQIC67DA5CNFSM4IRCYSG2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOD56I5TA#issuecomment-528256716>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAN7PXNZUKSPMRE7BAJMWBLQIC67DANCNFSM4IRCYSGQ>
.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This commit adds incremental annotation processing support
to Butterknife. More specifically, it makes Butterknife an
isolating annotation processor. More information about what
this means can be found at
https://docs.gradle.org/current/userguide/java_plugin.html#isolating_annotation_processors.
Closes #1230