nfc_in_flutter
nfc_in_flutter copied to clipboard
Warning on maxSize Shorten from 64 to 32 Bit Long - iOS Version
NfcInFlutterPlugin.m Line 567
Currently is
@"maxSize": [NSNumber numberWithInt:capacity],
Needs to be:
@"maxSize": [NSNumber numberWithInteger:capacity],
To overcome the warning message in iOS warning: implicit conversion loses integer precision 'const NSUInteger' (aka 'const unsigned long') to 'int' [-Wshorten-64-to-32]