Can not use android aar library in Multiplatform library project

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”)
}
}

Hello!
AFAIK, one has to use the android() target instead of the jvm() one to make Android-specific things available. Please have a look at this paragraph of the official documentation.

Thank you for the explanation~