Hi @EveryOne, I am new in KMM and trying to access native local AAR to KMM Project.
I tried by creating libs directory in Shared module inside androidMain. Added local AAR in libs directory and accessing inside build.gradle (SharedModule)
androidMain.
dependencies {
implementation(fileTree(_mapOf_("dir"
to "libs", "include" _to listOf_("*.jar", "*.aar"))))
implementation(files("libs/digi_scanner_1.0.7.aar"))
}
While sync getting below error
Null extracted folder for artifact: ResolvedArtifact(componentIdentifier=digi_scanner_1.0.7.aar, variant=local file, variantName=null, artifactFile=/Users/akash/AndroidStudioProjects/KmmBridge/shared/libs/digi_scanner_1.0.7.aar, isTestFixturesArtifact=false, extractedFolder=null, publishedLintJar=null, dependencyType=ANDROID, isWrappedModule=false)
I am stuck here can some one suggest me how to access local AAR or Native package in KMM project.