-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Duplicated value exception #63
Comments
I can verify that the duplicate detection is off for the code you provided, which should be working, but isn't. |
So? |
So, we will be resolving the issue in an upcoming release. |
So Thank you :) |
83b0a35 fixes this, so that this problem will be resolved in the next release. |
Can you give me the release time?, because i need this fix urgently |
@hotchemi Could you prepare an artifact for |
@aurae I think the test fails... |
The test suite passes in its entirety on my machine (using |
|
Sorry, I've not dived into the detail yet. |
The failing test cases are related to another issue with the Copy task that prepares the library's sources for the processor's test suite. I'm opening a new issue on this. edit: tracking in #64 |
Any updates? |
I have these functions:
@NeedsPermission({Manifest.permission.CAMERA,Manifest.permission.WRITE_EXTERNAL_STORAGE})
public void showCamera() {
}
@OnPermissionDenied({Manifest.permission.CAMERA,Manifest.permission.WRITE_EXTERNAL_STORAGE})
void onShowCameraDenied() {
}
These Functions to show camera and show gallery picker
As you know camera app needs to permissions (Camera,Storage), and gallery app only need storage permission.
In three first functions to manage with camera permissions, and the other function to manage gallery permission
The Bug is:
You provide me to set multiple permission with camera and storage in NeedsPermission annotation, but you prevent me to set them in OnPermissionDenied and OnNeverAskAgain annotations.
This is an error:
Error:Execution failed for task ':app:compileStagingDebugJavaWithJavac'.
Thanks in advance.
The text was updated successfully, but these errors were encountered: