Hi, someone knows why (In windows) the app don't a...
# compose-desktop
m
Hi, someone knows why (In windows) the app don't appear in the searchbox?
t
U need to define
menuGroup
as well as
iconFile
to appear the app in start menu.
Copy code
val iconsRoot = project.file("/your/icon/dir/goes/here")
windows {
    iconFile.set(iconsRoot.resolve("my_app_icon.ico")) // SHOULD BE ICO FILE
    menuGroup = packageName
}
Note that the icon file should be an
ico
file.
1
m
Thanks bro
👍 1