๐Ÿš‡ Metro

May 2, 2026 ยท View on GitHub

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
InstallationSetup and configuration
Dependency GraphsDefine and create graphs
ProvidesProvider functions and properties
Injection TypesConstructor, assisted, and member injection
ScopesScoping and lifecycle management
AggregationAnvil-style contributions across modules
InteropDagger, kotlin-inject, and Guice compatibility
PerformanceBuild and runtime performance
CompatibilitySupported Kotlin versions
FAQFrequently asked questions
API DocsGenerated 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.