October 2019
Intermediate to advanced
434 pages
11h 54m
English
At the core of Kotlin multiplatform is shared code. To start building our project, we'll begin by creating a new Gradle module that will contain our shared Kotlin code:
root .gradle/ .idea/ gradle/ build.gradle gradlew gradlew.bat settings.gradle
buildscript { ext { kotlin_version = '1.3.31' } repositories { google() jcenter() mavenCentral() } dependencies { classpath ...
Read now
Unlock full access