aidsForService method

Future<List<String>> aidsForService(
  1. CardEmulationCategory category
)

The AIDs registered against this app's emulation service in category, as uppercase hex.

The readback for registerAids -- pass CardEmulationCategory.other, which is the category this plugin registers under. It reports the AIDs declared in the manifest and the ones registered at run time together, because together is what the framework routes on; there is no way to ask for one without the other.

Implementation

Future<List<String>> aidsForService(CardEmulationCategory category) =>
    androidApi.hceAidsForService(_categoryToWire(category));