Search Gradle plugins

Version 3.0.2

3.0.2

Created 26 March 2018.

Properly configure your android project on CI servers (like travis)

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.freefair.android-ci-dex") version "3.0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.freefair.gradle:android-gradle-plugins:3.0.2")
      }
    }
    
    apply(plugin = "io.freefair.android-ci-dex")
  • Applying plugins to all subprojects .