Search Gradle plugins

Version 0.9.0 (latest)

0.9.0

Created 26 February 2016.

This plugin allows you to update Android SDK components in the Gradle build script.

Add this plugin to your build using the plugins DSL:

plugins {
  id("info.vividcode.android.sdk-manager") version "0.9.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.info.vividcode.android.build:vc-gradle-android-sdk-manager:0.9.0")
      }
    }
    
    apply(plugin = "info.vividcode.android.sdk-manager")
  • Applying plugins to all subprojects .