-
Notifications
You must be signed in to change notification settings - Fork 143
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
AutoValue error when compiling with Buck #16
Comments
It builds on my local machine, are you on macOS? what's your buck version? |
I'm on sierras
|
That's strange, I try your buck version, it builds well on my machine. Could you please provide |
|
I see, the annotation_processors = [
'com.google.auto.value.processor.AutoAnnotationProcessor',
'com.google.auto.value.processor.AutoValueBuilderProcessor',
'com.google.auto.value.processor.AutoValueProcessor',
'dagger.internal.codegen.ComponentProcessor',
], but it is: annotation_processors = [
'dagger.internal.codegen.ComponentProcessor',
], so of course auto-value won't work, and thus some classes are not generated. I suggest you delete all |
I deleted all the BUCK files and the buck-out, .okbuck and .buckd; re-generated buck with ./gradlew :buckWrapper same error I did manually replace:
with
and it compiled. |
That's really strange. |
The text was updated successfully, but these errors were encountered: