blob: 90435deb4c3924db7483d5efecfeaef9e4902bb8 [file] [log] [blame] [view]
Dustin Lam35b7b7c2020-04-05 16:29:33 -07001# AndroidX Gradle Plugin
2
3The AndroidX Gradle plugin is a repackaged version of the existing Gradle plugin in the `buildSrc` directory.
4
5This project helps decouple AndroidX project builds from having to use `buildSrc` and they can use the maven coordinates
6`androidx.build:gradle-plugin:<version>` instead.
7
8```groovy
9// in settings.gradle
10includeBuild("../androidx-plugin")
11
12// in build.gradle
13dependencies {
14 //.. other dependencies
15 classpath 'androidx.build:gradle-plugin:0.1.0'
16}
17```
18