We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
I added dependencies to my gradle file:
implementation 'com.fivemiles.auto:auto-data-class-lib:0.5.3' kapt 'com.fivemiles.auto:auto-data-class-processor:0.5.3'
There was an error in generated files:
DC_Message.kt: (8, 25): Unresolved reference: Generated
It seems that compiler cannot find javax.annotation.Generated and we need to add additional dependency to resolve it.
javax.annotation.Generated
The text was updated successfully, but these errors were encountered:
Sorry for replying so late. You may add the following dependency to your gradle script:
implementaion 'org.glassfish:javax.annotation:10.0-b28'
I'll consider to add it to the dependency tree, or just remove the annotation in the future releases.
Sorry, something went wrong.
No branches or pull requests
Uh oh!
There was an error while loading. Please reload this page.
I added dependencies to my gradle file:
There was an error in generated files:
It seems that compiler cannot find
javax.annotation.Generated
and we need to add additional dependency to resolve it.The text was updated successfully, but these errors were encountered: