[Architecture] split all feature modules to api/impl

This commit is contained in:
ganfra
2023-03-08 16:13:45 +01:00
parent b2c68d555a
commit 7051bfc14e
214 changed files with 626 additions and 1090 deletions

View File

@@ -60,11 +60,11 @@ fun DependencyHandlerScope.allLibraries() {
}
fun DependencyHandlerScope.allFeatures() {
implementation(project(":features:onboarding"))
implementation(project(":features:login"))
implementation(project(":features:logout"))
implementation(project(":features:roomlist"))
implementation(project(":features:onboarding:impl"))
implementation(project(":features:login:impl"))
implementation(project(":features:logout:impl"))
implementation(project(":features:roomlist:impl"))
implementation(project(":features:messages:impl"))
implementation(project(":features:rageshake"))
implementation(project(":features:preferences"))
implementation(project(":features:rageshake:impl"))
implementation(project(":features:preferences:impl"))
}