Hey folks, What would be the best way to identify ...
# android
s
Hey folks, What would be the best way to identify what should be the contents of a POM file for an android artifact? I'm currently doing this by manually getting the dependencies for the project configurations. So
Copy code
project.configurations.getByName("api") // to get api deps
project.configurations.getByName("implementation") // to get implementation deps
project.configurations.getByName("fooImplementation") // to get implementation deps for the Foo build variant
project.configurations.getByName("fooApi") // to get api deps for the Foo build variant
Do you think this would cover all possible scenarios? This is on AGP 4.2.2