Skip to content

Commit 90697fb

Browse files
committed
add subprojects field
1 parent b05774a commit 90697fb

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

packages/firebase_snippets_app/android/build.gradle

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,18 @@ allprojects {
1919
google()
2020
mavenCentral()
2121
}
22+
23+
subprojects {
24+
afterEvaluate { project ->
25+
if (project.hasProperty('android')) {
26+
project.android {
27+
if (namespace == null) {
28+
namespace project.group
29+
}
30+
}
31+
}
32+
}
33+
}
2234
}
2335

2436
rootProject.buildDir = '../build'

0 commit comments

Comments
 (0)