From 503168de801d50939731d22d7efb16237e697ab7 Mon Sep 17 00:00:00 2001 From: Willy-JL <49810075+Willy-JL@users.noreply.github.com> Date: Tue, 13 Feb 2024 19:39:57 +0000 Subject: [PATCH] Fix plugin symbol warnings (imported from fap api table) --- scripts/fbt_tools/fbt_extapps.py | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/scripts/fbt_tools/fbt_extapps.py b/scripts/fbt_tools/fbt_extapps.py index 056d0e927..d897dc8fb 100644 --- a/scripts/fbt_tools/fbt_extapps.py +++ b/scripts/fbt_tools/fbt_extapps.py @@ -295,8 +295,17 @@ def _validate_app_imports(target, source, env): for sym in unresolved_syms if sym.startswith( ( - "totp_", + # advanced_plugin "app_api_accumulator_", + # gallagher + "GALLAGHER_CARDAX_ASCII", + "gallagher_deobfuscate_and_parse_credential", + # js_ + "js_delay_with_flags", + "js_flags_wait", + "js_flags_set", + # totp_ + "totp_", "token_info_", "memset_s", ) @@ -305,6 +314,8 @@ def _validate_app_imports(target, source, env): prefix in source[0].path for prefix in [ "advanced_plugin", + "gallagher", + "js_", "totp_", ] )