I'm trying to publish and use my kotlin multiplatform library project, using publishToMavenLocal
When i'm running this task, under .m2/repository i only see the following:
mylib, mylib-android, mylid-android-debug
And when i try to use this library in kotlin multiplatform library, the androidMain can use the code declared in mylib
but code from iosMain complains that com.example.mylib ins unresolved.
What am i doing wrong?