Cannot import aar in common main
francescogatto opened this issue · 0 comments
francescogatto commented
Hi added .aar in libs folder inside src of common main and added it in sourcesets
sourceSets {
val commonMain by getting {
dependencies {
implementation(compose.runtime)
implementation(compose.foundation)
implementation(compose.material)
implementation(compose.materialIconsExtended)
@OptIn(org.jetbrains.compose.ExperimentalComposeLibrary::class)
implementation(compose.components.resources)
implementation(files("./src/libs/charts-debug.aar"))
}
}
Still impossible to call it. is it normal?