Requirement:
I have two library projects example, projectCoreModules, and projectCoreValidation.
Project A referring these two aar library projects and it's working fine.
current requirement, new project B also wants to refer this two aar library.
So, I created a separate repo for coreModules and CoreValidation projects in Azure DevOps.
Whenever PR is raised, the pipeline build will be triggered and it will publish the aar files.
I know, we can refer to the azure artifact feeds, in our android apps using the below code in Gradle.
api (group: 'Tst', name: 'TestingPackage', version: '3.1.0', ext: 'jar')
Same like this way, Is it possible to refer to the published aar files to projectA and projectB. So that I can reduce the code.
Even though I have tried with the universal package, through the build pipeline I can able to publish as a universal package. But, I was unable to refer those published to ProjectA and ProjectB. so that Gradle build of these two projects gets to succeed.