### Getting Started
```kotlin
// settings.gradle.kts
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
//...
maven("https://jitpack.io")
}
}
// build.gradle.kts
dependencies {
debugImplementation("com.github.foodiestudio:devtools:$version")
}
```
#### Initialization Instructions
The initialization component is registered through [App Startup](https://developer.android.com/topic/libraries/app-startup#kts) and is implicitly initialized, making it a plug-and-play tool.
However, you can also disable it using the `tools:node="remove"` method.
```xml