application.fam 733 B

12345678910111213141516171819202122232425262728293031
  1. App(
  2. appid="example_plugins",
  3. name="Example: App w/plugin",
  4. apptype=FlipperAppType.EXTERNAL,
  5. entry_point="example_plugins_app",
  6. stack_size=2 * 1024,
  7. fap_category="Examples",
  8. )
  9. App(
  10. appid="example_plugins_multi",
  11. name="Example: App w/plugins",
  12. apptype=FlipperAppType.EXTERNAL,
  13. entry_point="example_plugins_multi_app",
  14. stack_size=2 * 1024,
  15. fap_category="Examples",
  16. )
  17. App(
  18. appid="example_plugin1",
  19. apptype=FlipperAppType.PLUGIN,
  20. entry_point="example_plugin1_ep",
  21. requires=["example_plugins", "example_plugins_multi"],
  22. )
  23. App(
  24. appid="example_plugin2",
  25. apptype=FlipperAppType.PLUGIN,
  26. entry_point="example_plugin2_ep",
  27. requires=["example_plugins_multi"],
  28. )