What problem does it solve?
This Skill addresses the complexity of managing large Android projects by providing a clear, scalable, and maintainable multi-module architecture that enforces strict layer isolation and prevents circular dependencies.
Core Features & Use Cases
- Four-Layer Architecture: Defines
app, feature, component, and common layers with clear responsibilities.
- Dependency Rules: Enforces strict "depends on" rules between layers to maintain code health.
- Module Structure Guidance: Provides templates for
feature, component, and common modules.
- DI and Navigation Centralization: Mandates that DI and navigation setup reside solely within the
app module.
- Integration Modules: Guides the creation of
integration modules for cross-component orchestration.
- Use Case: When starting a new Android project or refactoring an existing one, use this Skill to establish a robust modular architecture from the outset, ensuring long-term maintainability and team scalability.
Quick Start
Apply the android-modularization skill to structure a new Android project with a four-layer architecture.