ZacSweers
metro
Kotlin

A multiplatform, compile-time dependency injection framework for Kotlin

Last updated Jul 7, 2026
1.3k
Stars
104
Forks
21
Issues
+8
Stars/day
Attention Score
90
Language breakdown
Kotlin 89.7%
Shell 6.5%
Jupyter Notebook 3.2%
Python 0.4%
Java 0.1%
JavaScript 0.1%
โ–ธ Files click to expand
README

๐Ÿš‡ Metro

A compile-time dependency injection framework for Kotlin Multiplatform, powered by a Kotlin compiler plugin.

Maven Central Kotlin Build Status License


What is Metro?

Metro is a compile-time dependency injection framework that combines the best of Dagger, Anvil, and kotlin-inject into one cohesive solution.

Key Features:

  • โœ… Compile-time validation โ€“ Catch dependency graph errors during compilation, not at runtime
  • ๐Ÿงฉ FIR/IR code generation โ€“ No KAPT or KSP required, just a Kotlin compiler plugin
  • ๐ŸŽฏ Kotlin-first API โ€“ Inspired by kotlin-inject with top-level function injection and optional dependencies
  • ๐Ÿ—ก๏ธ Dagger-esque runtime โ€“ Lean generated code with familiar patterns
  • โš’๏ธ Anvil-style aggregation โ€“ @ContributesTo, @ContributesBinding, and more
  • ๐ŸŒ Multiplatform โ€“ Supports JVM, JS, Wasm, and Native targets
  • ๐Ÿ’ก Helpful diagnostics โ€“ Detailed error messages with actionable suggestions
  • ๐Ÿ”— Advanced interop โ€“ Migrate incrementally from Dagger, kotlin-inject, or Guice
  • โšก๏ธ Fast - At build time, at runtime

Quick Start

1. Apply the Gradle plugin:

plugins {
  id("dev.zacsweers.metro") version "<version>"
}

2. Define a dependency graph:

@DependencyGraph
interface AppGraph {
  val repository: UserRepository

@Provides fun provideApi(): Api = ApiImpl() }

@Inject class UserRepository(private val api: Api)

3. Create and use the graph:

val graph = createGraph<AppGraph>()
val repository = graph.repository

Documentation

๐Ÿ“š zacsweers.github.io/metro

| Topic | | |----------------------------------------------------------------------------------|------------------------------------------------| | Installation | Setup and configuration | | Dependency Graphs | Define and create graphs | | Provides | Provider functions and properties | | Injection Types | Constructor, assisted, and member injection | | Scopes | Scoping and lifecycle management | | Aggregation | Anvil-style contributions across modules | | Interop | Dagger, kotlin-inject, and Guice compatibility | | Performance | Build and runtime performance | | Compatibility | Supported Kotlin versions | | FAQ | Frequently asked questions | | API Docs | Generated KDocs |


Supported Platforms

Metro supports JVM, Android, JS, Wasm, and Native targets. The compiler plugin works with all Kotlin Multiplatform project types.

See the multiplatform docs for full details.


License


Copyright (C) 2025 Zac Sweers

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

https://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

ยฉ 2026 GitRepoTrend ยท ZacSweers/metro ยท Updated daily from GitHub