tree: 3e4f6bfdfda178632fc36e1933c102f5d2829bc9 [path history] [tgz]
  1. .idea/
  2. gradle/
  3. gradle-plugin/
  4. build.gradle
  5. gradle.properties
  6. gradlew
  7. gradlew.bat
  8. README.md
  9. settings.gradle
androidx-plugin/README.md

AndroidX Gradle Plugin

The AndroidX Gradle plugin is a repackaged version of the existing Gradle plugin in the buildSrc directory.

This project helps decouple AndroidX project builds from having to use buildSrc and they can use the maven coordinates androidx.build:gradle-plugin:<version> instead.

// in settings.gradle
includeBuild("../androidx-plugin")

// in build.gradle
dependencies {
    //.. other dependencies
    classpath 'androidx.build:gradle-plugin:0.1.0'
}