App( appid="nfc", name="NFC", apptype=FlipperAppType.MENUEXTERNAL, targets=["f7"], entry_point="nfc_app", icon="A_NFC_14", stack_size=5 * 1024, order=30, resources="resources", sources=["*.c*", "!plugins", "!nfc_cli.c", "!cli"], fap_libs=["assets", "mbedtls"], fap_icon="icon.png", fap_category="NFC", ) # Parser plugins App( appid="all_in_one_parser", apptype=FlipperAppType.PLUGIN, entry_point="all_in_one_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/all_in_one.c"], ) App( appid="microel_parser", apptype=FlipperAppType.PLUGIN, entry_point="microel_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/microel.c"], ) App( appid="mizip_parser", apptype=FlipperAppType.PLUGIN, entry_point="mizip_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/mizip.c"], ) App( appid="hi_parser", apptype=FlipperAppType.PLUGIN, entry_point="hi_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/hi.c"], ) App( appid="opal_parser", apptype=FlipperAppType.PLUGIN, entry_point="opal_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/opal.c"], ) App( appid="mykey_parser", apptype=FlipperAppType.PLUGIN, entry_point="mykey_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/mykey.c"], ) App( appid="myki_parser", apptype=FlipperAppType.PLUGIN, entry_point="myki_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/myki.c"], ) App( appid="troika_parser", apptype=FlipperAppType.PLUGIN, entry_point="troika_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/troika.c"], ) App( appid="social_moscow_parser", apptype=FlipperAppType.PLUGIN, entry_point="social_moscow_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/social_moscow.c"], ) App( appid="washcity_parser", apptype=FlipperAppType.PLUGIN, entry_point="washcity_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/washcity.c"], ) App( appid="plantain_parser", apptype=FlipperAppType.PLUGIN, entry_point="plantain_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/plantain.c"], ) App( appid="two_cities_parser", apptype=FlipperAppType.PLUGIN, entry_point="two_cities_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/two_cities.c"], ) App( appid="aime_parser", apptype=FlipperAppType.PLUGIN, entry_point="aime_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/aime.c"], ) App( appid="bip_parser", apptype=FlipperAppType.PLUGIN, entry_point="bip_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/bip.c"], ) App( appid="umarsh_parser", apptype=FlipperAppType.PLUGIN, entry_point="umarsh_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/umarsh.c"], ) App( appid="gallagher_parser", apptype=FlipperAppType.PLUGIN, entry_point="gallagher_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/gallagher.c"], ) App( appid="clipper_parser", apptype=FlipperAppType.PLUGIN, entry_point="clipper_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/clipper.c"], ) App( appid="hid_parser", apptype=FlipperAppType.PLUGIN, entry_point="hid_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/hid.c"], ) App( appid="itso_parser", apptype=FlipperAppType.PLUGIN, entry_point="itso_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/itso.c"], ) App( appid="skylanders_parser", apptype=FlipperAppType.PLUGIN, entry_point="skylanders_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/skylanders.c"], ) App( appid="hworld_parser", apptype=FlipperAppType.PLUGIN, entry_point="hworld_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/hworld.c"], ) App( appid="trt_parser", apptype=FlipperAppType.PLUGIN, entry_point="trt_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/trt.c"], ) App( appid="ndef_ul_parser", apptype=FlipperAppType.PLUGIN, cdefines=[("NDEF_PROTO", "NDEF_PROTO_UL")], entry_point="ndef_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/ndef.c"], ) App( appid="ndef_mfc_parser", apptype=FlipperAppType.PLUGIN, cdefines=[("NDEF_PROTO", "NDEF_PROTO_MFC")], entry_point="ndef_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/ndef.c"], ) App( appid="ndef_slix_parser", apptype=FlipperAppType.PLUGIN, cdefines=[("NDEF_PROTO", "NDEF_PROTO_SLIX")], entry_point="ndef_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/ndef.c"], ) App( appid="disney_infinity_parser", apptype=FlipperAppType.PLUGIN, entry_point="disney_infinity_plugin_ep", targets=["f7"], requires=["nfc"], fap_libs=["mbedtls"], sources=["plugins/supported_cards/disney_infinity.c"], ) App( appid="cli_nfc", targets=["f7"], apptype=FlipperAppType.PLUGIN, entry_point="cli_nfc_ep", requires=["cli"], sources=[ "helpers/mf_classic_key_cache.c", "helpers/protocol_support/iso14443_3a/iso14443_3a_render.c", "helpers/protocol_support/mf_ultralight/mf_ultralight_render.c", "cli/nfc_cli.c", "cli/nfc_cli_commands.c", "cli/nfc_cli_command_processor.c", "cli/commands/helpers/nfc_cli_format.c", "cli/commands/helpers/nfc_cli_scanner.c", "cli/commands/helpers/nfc_cli_protocol_parser.c", "cli/commands/raw/nfc_cli_command_raw.c", "cli/commands/raw/protocol_handlers/iso14443_3a/nfc_cli_raw_iso14443_3a.c", "cli/commands/raw/protocol_handlers/iso14443_3b/nfc_cli_raw_iso14443_3b.c", "cli/commands/raw/protocol_handlers/iso15693_3/nfc_cli_raw_iso15693_3.c", "cli/commands/raw/protocol_handlers/felica/nfc_cli_raw_felica.c", "cli/commands/apdu/nfc_cli_command_apdu.c", "cli/commands/apdu/protocol_handlers/iso14443_4a/nfc_cli_apdu_iso14443_4a.c", "cli/commands/apdu/protocol_handlers/iso14443_4b/nfc_cli_apdu_iso14443_4b.c", "cli/commands/apdu/protocol_handlers/iso15693_3/nfc_cli_apdu_iso15693_3.c", "cli/commands/dump/nfc_cli_command_dump.c", "cli/commands/dump/protocols/iso14443_3a/nfc_cli_dump_iso14443_3a.c", "cli/commands/dump/protocols/iso14443_3b/nfc_cli_dump_iso14443_3b.c", "cli/commands/dump/protocols/iso14443_4a/nfc_cli_dump_iso14443_4a.c", "cli/commands/dump/protocols/iso14443_4b/nfc_cli_dump_iso14443_4b.c", "cli/commands/dump/protocols/iso15693_3/nfc_cli_dump_iso15693_3.c", "cli/commands/dump/protocols/mf_ultralight/nfc_cli_dump_mf_ultralight.c", "cli/commands/dump/protocols/mf_classic/nfc_cli_dump_mf_classic.c", "cli/commands/dump/protocols/mf_plus/nfc_cli_dump_mf_plus.c", "cli/commands/dump/protocols/mf_desfire/nfc_cli_dump_mf_desfire.c", "cli/commands/dump/protocols/slix/nfc_cli_dump_slix.c", "cli/commands/dump/protocols/st25tb/nfc_cli_dump_st25tb.c", "cli/commands/dump/protocols/felica/nfc_cli_dump_felica.c", "cli/commands/mfu/nfc_cli_command_mfu.c", "cli/commands/mfu/nfc_cli_action_info.c", "cli/commands/mfu/nfc_cli_action_rdbl.c", "cli/commands/mfu/nfc_cli_action_wrbl.c", "cli/commands/nfc_cli_command_emulate.c", "cli/commands/nfc_cli_command_scanner.c", "cli/commands/nfc_cli_command_field.c", ], ) App( appid="banapass_parser", apptype=FlipperAppType.PLUGIN, entry_point="banapass_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/banapass.c"], ) App( appid="aic_parser", apptype=FlipperAppType.PLUGIN, entry_point="aic_plugin_ep", targets=["f7"], requires=["nfc"], sources=["plugins/supported_cards/aic.c"], )