I have managed to read a transaction event
from the contactless reader
, using
<intent-filter>
<action android:name="com.gsma.services.nfc.action.TRANSACTION_EVENT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="nfc" />
</intent-filter>
Now my activity opens, and I'm stuck in that point because I thought I would have some kind of data in my Intent
like the amount
or the need to enter PIN
, but that didn't happen.
Can any point me to a direction or am I missing something here ?
Thank you all