You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
NFC Write Function Returns Unexpected Random Numbers
Description:
When pressing the "Start transfer" button, the nfc_write() function executes but outputs an unexpected array of random numbers in the terminal instead of performing the expected NFC write operation. Additionally, an error occurs stating that NFC is not available.
Steps to Reproduce:
Run the application using flutter run.
Press the "Start transfer" button.
Observe the terminal output.
Expected Behavior:
The nfc_write() function should correctly execute the NFC write process and confirm the transfer.
Actual Behavior:
Terminal logs an array of [255, 255, 255, ...] instead of expected data.
Error: PlatformException(404, NFC not available, null, null).
The error means the NFC is not enabled in the setting. We should have some way to notify users to enable it before using the app and/or before transferring.
NFC Write Function Returns Unexpected Random Numbers
Description:
When pressing the "Start transfer" button, the nfc_write() function executes but outputs an unexpected array of random numbers in the terminal instead of performing the expected NFC write operation. Additionally, an error occurs stating that NFC is not available.
Steps to Reproduce:
Run the application using flutter run.
Press the "Start transfer" button.
Observe the terminal output.
Expected Behavior:
Actual Behavior:
Terminal logs an array of [255, 255, 255, ...] instead of expected data.
Error: PlatformException(404, NFC not available, null, null).
NFC does not function as intended.
Relevant Code:
In main.dart
The text was updated successfully, but these errors were encountered: