https://kotlinlang.org logo
#android-architecture
Title
# android-architecture
u

ursus

08/29/2020, 12:03 AM
Do you keep separate settings.gradle around as not to build all the modules?
g

gildor

09/03/2020, 1:03 PM
Separate Gradle projects for separate apps/libraries Combining all to a single gradle indeed, may be a huge waste of resources, tho not for build time, but for configuration time
u

ursus

09/03/2020, 6:02 PM
what is a gradle project? I heard it said synomouous to module. I understand it as the "whole thing". -- If its not a single gradle project, then building on CI takes 3x the time, since each gradle build instance doesnt see that the other app's gradle uses some shared modules. Also, then you cannot force a change on all apps at once etc, .. no?
g

gildor

09/03/2020, 11:38 PM
Gradle project is project which uses Gradle, one which has settings.gradle file
It depends on your project structure of course
What kind change you cannot force?