I'm having trouble building a multi module Android...
# android
s
I'm having trouble building a multi module Android project. There's an Android Kotlin module
data
that depends on the pure Kotlin module
domain
, but I get an unresolved reference error in the
data
module when syncing with Gradle. The exact same class in Java has no problems. Here's my repo: https://github.com/pokesource/pokesource-android Here's the Kotlin class causing problems: https://github.com/pokesource/pokesource-android/blob/master/data/src/main/kotlin/me/sargunvohra/android/pokesource/data/executor/JobExecutor.kt And here's the Java version that works: https://github.com/pokesource/pokesource-android/blob/master/data/src/main/java/me/sargunvohra/android/pokesource/data/executor/JobExecutorJava.java Building from command line works fine, the problem is only in AS. I assume something needs to be fixed in my
build.gradle
files?