Skip to content
This repository has been archived by the owner on Jul 28, 2024. It is now read-only.

Commit

Permalink
Fix plugin symbol warnings (imported from fap api table)
Browse files Browse the repository at this point in the history
  • Loading branch information
Willy-JL committed Feb 13, 2024
1 parent a738947 commit 503168d
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion scripts/fbt_tools/fbt_extapps.py
Original file line number Diff line number Diff line change
Expand Up @@ -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",
)
Expand All @@ -305,6 +314,8 @@ def _validate_app_imports(target, source, env):
prefix in source[0].path
for prefix in [
"advanced_plugin",
"gallagher",
"js_",
"totp_",
]
)
Expand Down

0 comments on commit 503168d

Please sign in to comment.