Hi folks,I have created a Kotlin Multiplatform Lib...
# multiplatform
z
Hi folks,I have created a Kotlin Multiplatform Library project (Android & iOS). Could you please tell me how to generate artifacts so that they can be provided for use in other projects?
d
There should be a gradle build task called
assemble
. Just run that and your artifacts will be created.
1
z
Thank you!