kluck
05/02/2019, 9:01 AMplugins {
id("com.android.application")
id("kotlin-android")
id("kotlin-android-extensions")
}
android {
[...]
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(project(":domain"))
implementation(project(":presentation"))
[...]
}
I have two other modules: one is domain
which is a basic kotlin module (plugins { kotlin("jvm") }
), and the other one is presentation
, which is an android library:
plugins {
id("com.android.library")
}
android {
[...]
}
dependencies {
implementation(kotlin("stdlib-jdk8"))
implementation(project(":domain"))
[...]
}
In the IDE, everything works fine. But when I'm trying to launch a build, I get weird unresolved reference
issues only on the presentation
module.
Do you know where the problem can come from?darkmoon_uk
05/02/2019, 12:23 PMilya.gorbunov
05/02/2019, 7:59 PMkotlin-android
plugin to the presentation
module too?kluck
05/03/2019, 6:42 AM