I need to reference some files in $HOME/.konan/dep...
# kotlin-native
n
I need to reference some files in $HOME/.konan/dependencies, but I would like to avoid hardcoding the path. Is there any way to do so, maybe the KGP exposes it in some way?
m
AFAIK for now there isn't, in my projects I use
val konanDataDir = System.getenv("KONAN_DATA_DIR") ?: "${System.getProperty("user.home")}/.konan"
👍 3
n
I see, thanks!