GarouDan
01/25/2020, 12:37 AMCould not find 'main' in '<root>' package.
I can move my main folder to the root package, but does someone know how can we configure the kotlin multiplatform plugin in order to provide another entry point?
It looks like we have a option -e
for command line but I’m not sure how to do that from the build.gradle.kts
configuration fileArtyom Degtyarev [JB]
01/27/2020, 7:44 AMbinaries.executable.entryPoint="org.my.package.whatever"
. See more details here here(https://kotlinlang.org/docs/reference/building-mpp-with-gradle.html#building-final-native-binaries), Configuring binaries.GarouDan
01/27/2020, 9:56 AM