nameWithoutSourceSet
Returns the base name of the Configuration without any source set prefix.
For "main" source sets, this function just returns the same string, e.g.: ConfigurationName("api").nameWithoutSourceSet() == "api" ConfigurationName("implementation").nameWithoutSourceSet() == "implementation"
For other source sets, it returns the base configuration names: ConfigurationName("debugApi").nameWithoutSourceSet() == "Api" ConfigurationName("testImplementation").nameWithoutSourceSet() == "Implementation"
Since
0.12.0