We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Why ActivityScope does not have @Retention(RetentionPolicy.RUNTIME) while UserScope does. Is there any good reason or just copy paste bug?
ActivityScope
@Retention(RetentionPolicy.RUNTIME)
UserScope
The text was updated successfully, but these errors were encountered:
probably copy-paste bug, although Retention(RetentionPolicy.SOURCE) is sufficient for scopes because it is used for APT
Retention(RetentionPolicy.SOURCE)
Sorry, something went wrong.
No branches or pull requests
Why
ActivityScope
does not have@Retention(RetentionPolicy.RUNTIME)
whileUserScope
does. Is there any good reason or just copy paste bug?The text was updated successfully, but these errors were encountered: