From 4cc5b089ff2e10dc28a23cbe36cd10a4029e6f14 Mon Sep 17 00:00:00 2001 From: mxcdoam <72457810+mxcdoam@users.noreply.github.com> Date: Sun, 29 Mar 2026 20:15:35 +0300 Subject: [PATCH] applicatin.fam update --- applications/main/nfc/application.fam | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/applications/main/nfc/application.fam b/applications/main/nfc/application.fam index 275da7417..9e5caf8df 100644 --- a/applications/main/nfc/application.fam +++ b/applications/main/nfc/application.fam @@ -305,6 +305,33 @@ App( sources=["plugins/supported_cards/plantain.c"], ) +App( + appid="szppk_so_parser", + apptype=FlipperAppType.PLUGIN, + entry_point="szppk_so_plugin_ep", + targets=["f7"], + requires=["nfc"], + sources=["plugins/supported_cards/szppk_so.c"], +) + +App( + appid="sk_tk_parser", + apptype=FlipperAppType.PLUGIN, + entry_point="sk_tk_plugin_ep", + targets=["f7"], + requires=["nfc"], + sources=["plugins/supported_cards/sk_tk.c"], +) + +App( + appid="sev_tk_parser", + apptype=FlipperAppType.PLUGIN, + entry_point="sev_tk_plugin_ep", + targets=["f7"], + requires=["nfc"], + sources=["plugins/supported_cards/sevppk_tk.c"], +) + App( appid="two_cities_parser", apptype=FlipperAppType.PLUGIN,