Is it possible to nest multiple settings.gradle files for a multi module project?
E.g. settings.gradle of Project A should include settings.gradle of Project A_a
A (include ':A_a',':A_b')
A_a (include 'A_a_1','A_a_2','A_a_3')
A_a_1
A_a_2
A_a_3
A_b
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
No, there should only be one settings.gradle in the root project of the build. Gradle expects it to be that way, that’s how it was built. It will
Please see the Build Lifecycle documentation of gradle for a full explanation. Particularly the Initialization chapter.