Releases: tidev/ti.nfc
Releases · tidev/ti.nfc
iOS 4.1.1
v5.0.0-android
- Added Android 12 support.
v4.0.0-iphone: Merge pull request #50 from fasihul-axway/NFC/bump-version
Rebase with NativeTagSupport branch and bumped version
v4.0.0-android
build: build with sdk 9.2.0
v3.0.0-iphone
build: build with sdk 9.2.0
Android 4.0.0
- Now builds with gradle to an "AAR" library.
- Set min Titanium SDK version to
9.0.0
. - Added
x86_64
architecture support.
iOS 2.1.0
- Add parity for the
NfcAdapter
methodisEnabled()
to guard against unsupported devices:
if (!nfcAdapter.isEnabled()) {
Ti.API.error('This device does not support NFC capabilities!');
return;
}
nfcAdapter.begin(); // This is required for iOS only. Use "invalidate()" to invalidate a session.
iOS 2.0.1
- Create new NFC proxies on the correct thread and context
- Fix payload message
- Add
onNdefInvalidated
callback (iOS-only) to monitor cancelled / errored sessions
Android 3.0.0
- Support for Titanium SDK 7.0.0+
- Support for Android 64-Bit
iOS 2.0.0
- iOS parity with Android (using the iOS 11+
CoreNFC
framework)