arekolek
11/08/2022, 6:45 PM.dmg
? I didn’t do anything to include notifications, but when I run the app there is a notification shown
(reposted to add screenshot)czuckie
11/08/2022, 10:32 PMarekolek
11/09/2022, 9:40 AMczuckie
11/09/2022, 12:03 PMarekolek
11/12/2022, 10:01 AMcompose.desktop {
application {
nativeDistributions {
macOS {
infoPlist {
extraKeysRawXml = macExtraPlistKeys
}
}
}
}
}
val macExtraPlistKeys: String
get() = """
| <key>NSUserNotificationAlertStyle</key>
| <string>none</string>
""".trimMargin()
And I can see that it is added correctly in the Info.plist
However I see that the notification is still displayed. From what I found the app has to be signed for this to work apparently 😞 Hope that’s not too complicatedarekolek
11/12/2022, 10:38 AM