Search Gradle plugins

Version 2.0.0-SNAPSHOT (latest)

2.0.0-SNAPSHOT

Created 17 April 2019.

Gradle Plugin for Android apps

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.jdroid.android.application") version "2.0.0-SNAPSHOT"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.jdroidtools:jdroid-gradle-android-plugin:2.0.0-SNAPSHOT")
      }
    }
    
    apply(plugin = "com.jdroid.android.application")
  • Applying plugins to all subprojects .