QT NFC Not Working
-
"its not working and nor the application is able to launch properly" - a pretty vague description. What is not working? What happens if you try to start the example application? Do you get any errors?
-
- In Qt 5.6 if you run the qml crockboard example it will through errors as qt nfc 5.5 is not installed.
- When i deploy this application to nexus 7 tablet which supports nfc then the application ui is blank.
- I tried to write c++ code using QNearFieldManager.
QNearFieldManager.isAvailiable() function returns always false even though nexus 7 tablet supports NFC.
-
Is NFC activated?
-
-
I checked this post earlier and also thank you for sending this link.
For me the code ,nfc_ = new QNearFieldManager(this);
if (nfc_->isAvailable()) {
nfcLabel_->setText("NFC available");
} else {
nfcLabel_->setText("NFC not available");
qWarning() << "NFC not available";
}always tells me as NFC not available.