Hi, someone knows why (In windows) the app don't appear in the searchbox?
t
theapache64
04/01/2021, 4:25 AM
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
}