Sylvain Patenaude
11/05/2019, 7:31 PMrootProject.name = 'MySDK'
include 'MySDK'
enableFeaturePreview('GRADLE_METADATA')
It's based on examples, but I'm struggling to fully grasp what the rootProject.name implies (what are its effects?). Same thing for the include statement. Any documention on this somewhere?Daniel Rampelt
11/05/2019, 7:47 PMinclude
as well. This page in the gradle docs goes over it, Defining common behavior section near the top has some good examples
https://docs.gradle.org/current/userguide/multi_project_builds.htmlSylvain Patenaude
11/07/2019, 2:53 PMinclude 'MySDK'
line is probably unnecessary since it's the root project itself.