Dheeraj Gupta
09/28/2024, 3:35 PMconfigurations.create("default")
artifacts {
add("default", files("1st.aar"))
add("default", file("2nd.aar"))
}
trying to add this 2 .aar files in submodules then this submodule is added in another core module like this
implementation(project(":test"))
but the only 1.aar files can be inflated in the core module
why the other '2.arr' file data is not coming in that core module
can anyone help here.Vampire
09/28/2024, 4:04 PMfiles
in the first line but file
in the second? 🤷♂️
Here is the official docs on how to properly share things between projects: https://docs.gradle.org/current/userguide/cross_project_publications.htmlDheeraj Gupta
09/28/2024, 4:14 PMVampire
09/28/2024, 4:42 PMDheeraj Gupta
09/29/2024, 11:42 AMVampire
09/29/2024, 11:48 AM