https://kotlinlang.org logo
Title
g

Glen

07/23/2021, 7:13 PM
Hello everyone. Please, is there a possibility for generating a .AppImage from a desktop compose project? Or should I write like, a custom gradle task for it? Thanks.
b

Big Chungus

07/23/2021, 7:17 PM
Custom task for sure. Someone might have a ready example for you though, otherwise you can follow regular appinage documentation to pack your .deb output
g

Glen

07/23/2021, 7:18 PM
Oh, OK. Thanks very much👍🏼
The task should depend on the buildNativeDistribution task, right?
b

Big Chungus

07/23/2021, 7:37 PM
I'd assume so, you can use this plugin to visualize task dependency graph https://plugins.gradle.org/plugin/com.dorongold.task-tree
g

Glen

07/23/2021, 7:40 PM
OK Thanks...