apply plugin: 'com.android.library' apply plugin: 'kotlin-android' apply plugin: 'kotlin-kapt' android { compileSdkVersion projectSdkVersion.toInteger() defaultConfig { minSdkVersion projectMinSdkVersion } } dependencies { implementation project(':domain') implementation project(':data') implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version" implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:$coroutinesVersion" implementation "com.google.dagger:dagger:${daggerVersion}" kapt "com.google.dagger:dagger-compiler:${daggerVersion}" implementation "com.squareup.retrofit2:retrofit:$retrofit2Version" }