Skip to content
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

New versions of android have changes for broadcast system, code needs to be updated. #29

Open
heromanofe opened this issue Aug 22, 2023 · 1 comment

Comments

@heromanofe
Copy link

For myself, for now, I was able to fix broadcast issue by adding this in external activity class:

if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.TIRAMISU) {
			registerReceiver(readerReceiver, filter, Context.RECEIVER_NOT_EXPORTED);
		} else {
			registerReceiver(readerReceiver, filter);
		}

--Also I wanted to ask if this project is still active and if I can create pull request to also add other fixes to Issues I noticed--

@skjolber
Copy link
Owner

@heromanofe if you have some improvements, I'll gladly take them in.

The project is not very active, as a lot of things have been copied and improved at android-nfc-lib.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants