We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20c2862 commit a0e598cCopy full SHA for a0e598c
buildSrc/src/main/java/com/google/firebase/gradle/plugins/BaseFirebaseLibraryPlugin.kt
@@ -143,9 +143,10 @@ abstract class BaseFirebaseLibraryPlugin : Plugin<Project> {
143
private fun FirebaseLibraryExtension.applyPomTransformations(pom: MavenPom) {
144
pom.withXml {
145
val dependencies = asElement().findElementsByTag("dependency")
146
+ val androidDependencies = resolveAndroidDependencies()
147
for (dependency in dependencies) {
148
convertToCompileDependency(dependency)
- addTypeWithAARSupport(dependency, resolveAndroidDependencies())
149
+ addTypeWithAARSupport(dependency, androidDependencies)
150
}
151
152
0 commit comments