Create allFeatureApis extension and rename allFeatures to allFeaturesImpl
This commit is contained in:
parent
f1048f7578
commit
9bdcaae0cf
4 changed files with 19 additions and 13 deletions
|
|
@ -61,7 +61,18 @@ fun DependencyHandlerScope.allLibraries() {
|
|||
implementation(project(":libraries:di"))
|
||||
}
|
||||
|
||||
fun DependencyHandlerScope.allFeatures() {
|
||||
fun DependencyHandlerScope.allFeaturesApi() {
|
||||
implementation(project(":features:onboarding:api"))
|
||||
implementation(project(":features:login:api"))
|
||||
implementation(project(":features:logout:api"))
|
||||
implementation(project(":features:roomlist:api"))
|
||||
implementation(project(":features:messages:api"))
|
||||
implementation(project(":features:rageshake:api"))
|
||||
implementation(project(":features:preferences:api"))
|
||||
implementation(project(":features:createroom:api"))
|
||||
}
|
||||
|
||||
fun DependencyHandlerScope.allFeaturesImpl() {
|
||||
implementation(project(":features:onboarding:impl"))
|
||||
implementation(project(":features:login:impl"))
|
||||
implementation(project(":features:logout:impl"))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue