We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
kotlin-multiplatform
1 parent 0642ee8 commit 4ad2032Copy full SHA for 4ad2032
app/build.gradle
@@ -2,12 +2,6 @@ apply plugin: 'com.android.application'
2
3
apply plugin: 'kotlin-android'
4
5
-apply plugin: 'kotlin-platform-android'
6
-
7
-dependencies {
8
- expectedBy project(':common')
9
-}
10
11
apply plugin: 'kotlin-android-extensions'
12
13
android {
@@ -29,6 +23,7 @@ android {
29
23
}
30
24
31
25
dependencies {
26
+ implementation project(':common')
32
27
implementation fileTree(dir: 'libs', include: ['*.jar'])
33
28
implementation"org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
34
implementation 'com.android.support:appcompat-v7:28.0.0'
common/build.gradle
@@ -1,3 +1,4 @@
1
-apply plugin: 'kotlin-platform-common'
+apply plugin: 'kotlin-multiplatform'
+
0 commit comments