Suresh Maidaragi
03/13/2024, 3:01 PMbuild.gradle(:app)
and .aar file under ./app/libs/pitaraSharedRelease.aar
implementation fileTree(dir: "libs", include: ["*.jar", "*.aar"])
implementation files("../app/libs/pitaraSharedRelease.aar")
this is the error
Null extracted folder for artifact: ResolvedArtifact(componentIdentifier=pitaraSharedRelease.aar, variant=local file, variantName=null, artifactFile=/Users/sureshmaidaragi/StudioProjects/penpencil-android-app/app/libs/pitaraSharedRelease.aar, isTestFixturesArtifact=false, extractedFolder=null, publishedLintJar=null, dependencyType=ANDROID, isWrappedModule=false, buildMapping={__current_build__=/Users/sureshmaidaragi/StudioProjects/penpencil-android-app})
Vampire
03/13/2024, 4:02 PMfiles
and fileTree
for dependencies is highly questionable and usually not a good idea.
If you really need local files as dependencies, at least use a flatDir
repository and then normal dependency declarations.
Maybe that might also fix your problem, but I don't know.Suresh Maidaragi
04/04/2024, 8:46 AM