application.fam 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. # SPDX-License-Identifier: GPL-3.0-or-later
  2. #
  3. # VB Lab Migration Assistant for Flipper Zero
  4. # Copyright (C) 2022 cyanic
  5. #
  6. # This program is free software: you can redistribute it and/or modify
  7. # it under the terms of the GNU General Public License as published by
  8. # the Free Software Foundation, either version 3 of the License, or
  9. # (at your option) any later version.
  10. #
  11. # This program is distributed in the hope that it will be useful,
  12. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. # GNU General Public License for more details.
  15. #
  16. # You should have received a copy of the GNU General Public License
  17. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  18. App(
  19. appid="vb_migrate",
  20. name="VB Migration Assistant",
  21. apptype=FlipperAppType.EXTERNAL,
  22. entry_point="vb_migrate_app",
  23. requires=["gui", "storage"],
  24. stack_size=2 * 1024,
  25. fap_version=(1, 1),
  26. fap_libs=[],
  27. fap_private_libs=[
  28. Lib(
  29. name="nfc",
  30. ),
  31. ],
  32. fap_icon="vb_migrate_10px.png",
  33. fap_category="NFC",
  34. fap_description="Makes transferring characters with VB Lab less cumbersome",
  35. fap_author="cyanic",
  36. fap_weburl="https://github.com/GMMan/flipperzero-vb-migrate",
  37. fap_icon_assets="icons",
  38. )