I created Multiplatform library project.
I added aar library dependency…but can not use class of the aar library.
Is there any way?
plugins {
id(“org.jetbrains.kotlin.multiplatform”) version “1.3.60”
}
kotlin {
jvm(“android”)
sourceSets[“androidMain”].dependencies {
implementation(“org.jetbrains.kotlin:kotlin-stdlib:1.3.60”)
implementation(“androidx.lifecycle:lifecycle-viewmodel-ktx:2.1.0”)
}
}