-
-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathapplication.fam
More file actions
23 lines (23 loc) · 778 Bytes
/
application.fam
File metadata and controls
23 lines (23 loc) · 778 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
App(
appid="pokemon",
name="Pokemon Trade Tool",
apptype=FlipperAppType.EXTERNAL,
entry_point="pokemon_app",
requires=["gui"],
stack_size=2 * 1024,
fap_version=[2,3],
fap_category="GPIO",
fap_icon="pokemon_10px.png",
fap_icon_assets="assets",
fap_file_assets="files",
fap_author="Kris Bahnsen, Esteban Fuentealba, ProteanReverie, Darryn Cull",
fap_weburl="https://github.com/kbembedded/Flipper-Zero-Game-Boy-Pokemon-Trading",
fap_description="Pokemon exchange from Flipper Zero to Game Boy, supports Generation I & II non-Japanese games",
fap_private_libs=[
Lib(
name="flipper-gblink",
fap_include_paths=["gblink/include", "./"],
sources=["gblink/*.c"],
),
],
)