I want to create a Kotlin multiplatform library th...
# multiplatform
a
I want to create a Kotlin multiplatform library that contains a set of models and algorithms that I can then use in a React app and a Kotlin app. I used the basic template created by IntelliJ and make this simple repo: https://github.com/cloudyDino/ChessTournamentPairing After I run a
./gradlew build
, I get output in the
/build
folder. However, how do I actually use the output in a Javascript app? How do I use it as a dependency for a separate Kotlin app? I tried publishing to MavenLocal but I keep getting a warning that gradle has failed to resolve the line I added
implementation "com.cloudydino:ChessTournamentPairing:0.0.1"
b