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
With the advent of Android 14, the receivers must be updated to not throw a security exception.
More info: https://stackoverflow.com/questions/77235063/one-of-receiver-exported-or-receiver-not-exported-should-be-specified-when-a-rec
We need to update this line: context.registerReceiver(this, filter);
context.registerReceiver(this, filter);
To something like: context.registerReceiver(this, filter, RECEIVER_NOT_EXPORTED);
context.registerReceiver(this, filter, RECEIVER_NOT_EXPORTED);
Thanks in advance.
The text was updated successfully, but these errors were encountered:
There were a couple of changes besides the one listed above.
I've created a fork with an updated version (that fixes this issue): Cropiwa Updated
Sorry, something went wrong.
No branches or pull requests
With the advent of Android 14, the receivers must be updated to not throw a security exception.
More info:
https://stackoverflow.com/questions/77235063/one-of-receiver-exported-or-receiver-not-exported-should-be-specified-when-a-rec
TL;DL;
We need to update this line:
context.registerReceiver(this, filter);
To something like:
context.registerReceiver(this, filter, RECEIVER_NOT_EXPORTED);
Thanks in advance.
The text was updated successfully, but these errors were encountered: