Is there example how to refer api dependency(nativ...
# multiplatform
k
Is there example how to refer api dependency(native, metadata) on local FS? I have kotlin mpp lib, that is build but not published to repo. I want to have it as dependency from other kotlin mpp project.
api(files("/Users/ ... .klib") doesn't work
f
You need to add the local repository in gradle
👍 1