Last active
June 20, 2020 13:36
-
-
Save romainbsl/640f80dc9e1b42c2e52b2cb32dbe8b24 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| repositories { | |
| // your repositories | |
| jcenter() | |
| } | |
| kotlin { | |
| jvm("android") | |
| ios() | |
| sourceSets { | |
| val commonMain by getting { | |
| dependencies { | |
| // Kotlin stdlib / coroutines / serialization / ktor-client libraries | |
| implementation("org.kodein.di:kodein-di:7.0.0") | |
| } | |
| } | |
| val androidMain by getting { | |
| dependencies { | |
| // Kotlin stdlib / coroutines / serialization / ktor-client libraries | |
| } | |
| } | |
| val iosMain by getting { | |
| dependencies { | |
| // Kotlin stdlib / coroutines / serialization / ktor-client libraries | |
| } | |
| } | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment