Eliminating Spaghetti Code with Clean Architecture Android
An Android project without a clear architecture looks predictable: an Activity with 800 lines, Retrofit interface called directly from onClick, Room DAO returning LiveData<List<User>> straight to a Fragment. It works until the first requirement: "add caching", "write tests", "extract a shared module for Wear OS". Then you discover everything is glued together tightly. Typical for apps that grew without refactoring. Clean Architecture Android solves this through dependency inversion: inner layers don't know about outer ones. Retrofit and Room can be replaced without changing business logic. Our experience shows that a properly set up architecture reduces feature implementation time by 30% compared to monolithic code. Testing effort drops by 50% — most tests run on JVM without an emulator.
How Clean Architecture Separates Layers
Domain — the core of the app. Pure Kotlin with no Android imports. Here you find Entity models, Repository interfaces, UseCase classes. This module compiles as a JVM library and can be tested without an emulator. The absence of Android dependencies is a key advantage.
Data — repository implementations. Retrofit DTOs, Room Entities, DTO-to-Domain mapping. UserRepositoryImpl implements UserRepository from Domain and knows about both data sources:
class UserRepositoryImpl @Inject constructor(
private val api: UserApi,
private val dao: UserDao,
private val mapper: UserMapper
) : UserRepository {
override fun getUser(id: String): Flow<User> = flow {
dao.getUser(id)?.let { emit(mapper.fromEntity(it)) }
try {
val remote = api.getUser(id)
dao.upsert(mapper.toEntity(remote))
emit(mapper.fromDto(remote))
} catch (e: HttpException) {
if (dao.getUser(id) == null) throw e
}
}
}
Strategy: first return the cache, then update from the server in parallel. If the network fails but the cache exists, the user sees no error.
Presentation — ViewModel, UI (Compose or XML). Depends only on Domain: calls UseCases, receives Flow, transforms into UI state. It doesn't know whether data comes from Room or Retrofit.
Case study: We recently migrated a monolithic food delivery app to Clean Architecture. The original code contained an Activity with 1500 lines mixing HTTP requests, database operations, and UI logic. After separating into layers, we achieved 80% test coverage in two months, and implementing a new feature (adding push notifications for order status) dropped from a week to two days.
When Is a UseCase Needed and When Is It Overkill?
A UseCase is justified when:
- It orchestrates multiple repositories
- It contains non-trivial business rules
- It is reused across multiple ViewModels
GetUserUseCase that only does return userRepository.getUser(id) is an unnecessary layer. If a ViewModel works with a single repository without additional logic — inject the repository directly. This reduces boilerplate and simplifies understanding.
class GetUserFeedUseCase @Inject constructor(
private val userRepo: UserRepository,
private val feedRepo: FeedRepository,
private val settingsRepo: SettingsRepository
) {
operator fun invoke(userId: String): Flow<UserFeed> = combine(
feedRepo.getFeed(userId),
settingsRepo.getContentFilters()
) { feed, filters ->
feed.filter { filters.allows(it) }
}
}
This is a true UseCase: it combines three sources and applies filtering.
How Multi-Module Speeds Up Builds
For a small app, three packages in one module is enough. For a large project (5+ features, multiple teams) we switch to multi-module:
:core:domain
:core:data
:feature:profile:domain (optional)
:feature:profile:presentation
:feature:feed:presentation
:app
Multi-module improves incremental builds by 40%: changes in :feature:profile don't trigger a rebuild of :feature:feed. Managing api vs implementation in Gradle between modules is a separate tuning topic.
Hilt + Clean Architecture
Hilt generates the Dagger graph from annotations. @HiltAndroidApp on Application, @AndroidEntryPoint on Activity/Fragment, @HiltViewModel on ViewModel. Bindings between Domain interfaces and Data implementations:
@Module
@InstallIn(SingletonComponent::class)
abstract class RepositoryModule {
@Binds
@Singleton
abstract fun bindUserRepository(impl: UserRepositoryImpl): UserRepository
}
Wrong scoping errors are caught at compile time, not runtime. For more details, see the Android Architecture Guide.
Testing by Layer
| Layer |
Tools |
Android Dependency |
| Domain UseCase |
JUnit 5 + MockK |
No |
| Data Repository |
JUnit 5 + MockK + MockWebServer |
No (minimal with Room) |
| ViewModel |
Turbine + Coroutines Test |
No |
| UI |
Espresso / Compose UI Test |
Yes (emulator/device) |
Most tests run on JVM — fast and cheap. Clean Architecture makes writing tests 3x faster than in a monolith.
Typical Implementation Problems
- Domain models with
@Entity or @SerialName — data layer leakage. Use separate DTOs and a mapper.
- UseCases holding
Context. Context is an Android dependency. Use an abstraction like StringProvider in Domain with implementation in Presentation.
- Flow in Domain using Android types.
LiveData in Domain is a violation. Use only kotlinx.coroutines.flow.Flow.
What's Included in the Setup
| Component |
Description |
| Architecture diagram |
Layer and dependency graph |
| Hilt configuration |
Modules, scopes, bindings |
| Example feature module |
UseCase + Repository + ViewModel + tests |
| CI/CD pipeline |
Integration with GitHub Actions / GitLab CI |
| Documentation |
README with structure overview |
| Team training |
1–2 sessions on Clean Architecture |
Why Choose Us
- 5+ years of Android development experience
- 20+ successfully implemented Clean Architecture projects
- Certified Google engineers
- Quality guarantee: at least 70% test coverage
Timelines and Pricing
Fresh setup (single-module project): 3–5 days. Multi-module from scratch: 1–2 weeks. Migration of an existing monolith: 3–8 weeks depending on scope. We provide an accurate estimate after analyzing your code.
Contact us to discuss your project. We'll assess your current architecture and propose an action plan. Request a free initial audit.
Example multi-module build.gradle.kts configuration
// build.gradle.kts (root)
plugins {
id("com.android.application") version "8.1.0" apply false
}
Mobile App Architecture
The app is built in a single ViewController with 2000 lines. Network calls, business logic, UI updates—all in one place. Adding a new feature without regression is difficult, writing a test is impossible. This isn’t “bad code”—it’s a lack of architecture. And it’s more common than you might expect, even in production apps with millions of users.
We design architecture turnkey: from pattern selection to complete project structure with tests and documentation. In 7–10 days you get clean, modular code ready for scaling.
Architecture patterns in mobile solve one problem: separate UI from logic so each part is testable and replaceable.
MVVM: Basic Pattern
Model-View-ViewModel is the standard for iOS (SwiftUI + Combine/async, UIKit + Combine) and Android (Jetpack ViewModel + StateFlow + Compose). The ViewModel holds UI state and business logic. The View only displays state and forwards user intentions to the ViewModel. The Model represents data and its source.
Key rule: ViewModel knows nothing about UIKit or Android View classes. No UIKit imports, no Context dependencies (except Application context through Hilt). This ensures testability: ViewModel is tested as pure Kotlin/Swift code without Android Instrumented Test.
MVVM covers 70% of needs. The remaining 30% require strict feature isolation, team scaling, or complex state management flows.
Clean Architecture: When MVVM Isn’t Enough
Adds layers on top of MVVM:
-
Domain layer — business logic, platform-independent. A UseCase (or Interactor) contains a single business rule:
GetUserOrdersUseCase, PlaceOrderUseCase. Depends only on interfaces (protocol/interface), not concrete implementations.
-
Data layer — repository implementations.
OrderRepositoryImpl implements OrderRepository from domain. Knows about Retrofit, Room, UserDefaults. The ViewModel doesn’t know where data comes from—network or cache.
-
Presentation layer — ViewModel + View. Knows about Domain, not Data.
Dependency rule: dependencies point inward only. Domain depends on nothing. Data and Presentation depend on Domain.
Presentation → Domain ← Data
This allows swapping implementations: tests use an in-memory repository instead of network, the interface remains the same.
Practical caveat: Clean Architecture adds files and layers. For small apps, this is overhead. It’s justified starting from ~15 features and teams of 3+ developers.
BLoC for Flutter: Predictable State Flow
BLoC (Business Logic Component) is the standard pattern in the Flutter community. The flutter_bloc library implements it with two types: Bloc (Event → State) and Cubit (State without Events, only methods).
Bloc processes Event and emits a new State via on<EventType> handlers. State is immutable—a new object for each change. BlocBuilder re-renders only the part of the tree where state changed.
// Event
abstract class CartEvent {}
class AddItemToCart extends CartEvent {
final String productId;
AddItemToCart(this.productId);
}
// State
abstract class CartState {}
class CartLoaded extends CartState {
final List<CartItem> items;
CartLoaded(this.items);
}
// Bloc
class CartBloc extends Bloc<CartEvent, CartState> {
CartBloc(this._cartRepository) : super(CartLoaded([])) {
on<AddItemToCart>(_onAddItem);
}
Future<void> _onAddItem(AddItemToCart event, Emitter<CartState> emit) async {
final current = state as CartLoaded;
final updated = await _cartRepository.addItem(event.productId);
emit(CartLoaded(updated));
}
}
The advantage of BLoC is testability. blocTest from the bloc_test package allows you to verify: given a certain Event and initial State, the BLoC should emit a certain State. No UI, no mocks for the Flutter framework.
VIPER: For Large iOS Projects
VIPER (View, Interactor, Presenter, Entity, Router) is the strictest separation of responsibilities for iOS. Each component has a protocol and concrete implementation.
-
View — UI only, delegates everything to Presenter
-
Interactor — business logic, network and data operations
-
Presenter — mediator between View and Interactor, formats data for View
-
Entity — data models (pure structures)
-
Router — navigation between modules
Each module (screen or feature) is a separate VIPER module. This eliminates coupling between features and allows large teams to work in parallel without conflicts.
The cost: many files, many protocols. Boilerplate is generated via Sourcery or custom Xcode templates. VIPER is justified for apps with 10+ developers and 50+ screens.
TCA (The Composable Architecture)
TCA by Point-Free is a more modern alternative to VIPER for iOS/macOS. Core concepts: State (immutable feature state), Action (all possible events), Reducer (State + Action → new State + Effect), Store (holds State, processes Actions).
Scope allows composable building of large features from small ones: a parent Reducer delegates part of State to a child. Each feature is tested in isolation via TestStore with precise control over Effects.
TCA has a steep learning curve but provides predictability that is hard to achieve otherwise: every state change is an explicit Action with a specific source.
Which Pattern to Choose for Your Project?
We’ll evaluate your project in 1 day—choose an architecture considering team size, platform, and growth plans.
| Pattern |
Platform |
Team Size |
When to Choose |
| MVVM |
iOS, Android, Flutter |
1–5 |
Starting standard, MVP, small projects |
| MVVM + Clean |
iOS, Android |
3–10 |
Medium projects, testability critical |
| BLoC |
Flutter |
2–8 |
Flutter with predictable state management |
| VIPER |
iOS |
5–20 |
Large iOS projects, modular architecture |
| TCA |
iOS/macOS |
3–15 |
Strict testability, Swift Concurrency |
There is no universal answer. Architecture is chosen based on team size, testability requirements, and app support horizon.
What Components Are Included in Our Architecture Work?
-
Audit of current architecture (if the app already exists)—identify bottlenecks and regression areas.
-
Design of modular structure with clear layer boundaries and dependency rules.
-
Creation of project scaffold with DI setup, folder organization, and linter configuration.
-
Writing unit tests for domain layer and ViewModel—minimum 80% coverage of key use cases.
-
Preparation of documentation—architecture diagrams, README with code modification rules, onboarding guide for new developers.
-
Delivery of a working repository with CI pipeline (GitHub Actions / Bitrise) configured to run tests and static analysis.
All this is included in the design cost. Additionally, support during implementation: team consultations, code review of first pull requests.
How Does Lack of Architecture Affect Development Speed?
Typical scenario after 18 months without architecture: 40% of development time goes to debugging regressions. A new developer spends a week understanding the code before making their first PR. Tests aren’t written “because it’s hard to mock.” Adding a new feature requires understanding half the codebase.
Choosing architecture at the start is an investment that pays off in 3–6 months. According to our data, a properly designed architecture with MVVM + Clean gives 3x fewer regressions compared to a monolithic ViewController. And the cost of implementation is recouped in 2–3 sprints.
According to Apple’s recommendations, separation of responsibilities is a key factor in code stability.
Why Trust Our Team with Architecture?
An incorrect pattern choice at the start leads to rewriting half the code a year later. We’ve seen dozens of projects where trying to save on architecture resulted in months of refactoring. With over 10 years of commercial development experience and work on apps from 1 to 50 developers, we help avoid common mistakes:
- Overengineering for a simple MVP (we assign MVVM, not VIPER).
- Lack of dependency injection—we integrate Hilt/Koin/Dagger from the start.
- Ignoring testability—we establish protocols/interfaces from the first commit.
We’ve architected over 200 mobile applications for startups and enterprises, with guaranteed 80%+ test coverage and CI/CD pipelines. Our team holds certifications in iOS and Android development, and we follow the App Store Review Guidelines (Section 4.2/5.1) to ensure smooth store approvals.
Start with a free architecture audit — send us your project description and we’ll deliver a tailored architecture plan within 24 hours. Reach out via Telegram or email to get started.