An Android library for enabling third-party application to read and write data into NFC Tag.
In the onCreate of your activity or the onCreateView of your fragment, initialize the view with the NfcReadWriteController.
private NfcReadWriteController nfcController;
nfcController = new NfcReadWriteController(this);
Once the NfcReadWriteController is initialize for checking the NFC functionality is supported by the device we need to check inside onResume of your fragment or activity
nfcController.isNfcAvailable(new NfcStatusListener() {
@Override
public void nfcProcessOnError(NfcStatusObject object) {
if (!object.success) {
Toast.makeText(getApplicationContext(), "NFC not available !", Toast.LENGTH_SHORT).show();
}
}
@Override
public void nfcMessageOnSuccess(NfcStatusObject object) {
if (object.success) {
Toast.makeText(getApplicationContext(), "NFC available", Toast.LENGTH_SHORT).show();
}
}
});
To read the NFC data as NDEF record via intent we need to enableForegroundDispatch in side the onResume.
@Override
protected void onResume() {
super.onResume();
nfcController.enableForegroundDispatchSystem(this, getClass());
}
And also need to disable it so that the activity will listen the dispatch of the intent putting the disableForegroundDispatch in side the onPause
@Override
protected void onPause() {
super.onPause();
nfcController.disableForegroundDispatchSystem(this);
}
To #read the NDEF message from every time we need to to override onNewIntent
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
nfcController.readNfcTag(intent, new NfcStatusListener() {
@Override
public void nfcProcessOnError(NfcStatusObject object) {
Toast.makeText(getApplicationContext(), "status : " + object.getMessage(), Toast.LENGTH_SHORT).show();
}
@Override
public void nfcMessageOnSuccess(NfcStatusObject object) {
if (object.isSuccess())
editText.setText(object.getMessage());
Toast.makeText(getApplicationContext(), "Read tag successful", Toast.LENGTH_SHORT).show();
}
});
}
}
For writing to the tag also needed to override the onNewIntent
@Override
protected void onNewIntent(Intent intent) {
super.onNewIntent(intent);
nfcController.writeNfcTag(intent, editText.getText().toString(), new NfcStatusListener() {
@Override
public void nfcProcessOnError(NfcStatusObject object) {
Toast.makeText(getApplicationContext(), "status : " + object.getMessage(), Toast.LENGTH_SHORT).show();
}
@Override
public void nfcMessageOnSuccess(NfcStatusObject object) {
if (object.isSuccess())
Toast.makeText(getApplicationContext(), "Tag written", Toast.LENGTH_SHORT).show();
}
});
}
The latest version can be downloaded in zip and referenced by your application as a library project.
You can also depend on library through Maven :
<repositories>
<repository>
<id>jitpack.io</id>
<url>https://jitpack.io</url>
</repository>
</repositories>
<dependency>
<groupId>com.github.hathorr-hub</groupId>
<artifactId>goNfcLight</artifactId>
<version>1.1</version>
</dependency>
or gradle:
allprojects {
repositories {
...
maven { url 'https://jitpack.io' }
}
}
dependencies {
implementation 'com.github.hathorr-hub:goNfcLight:1.1'
}
Copyright 2019 Soumen Debnath.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.