Search Gradle plugins

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.betomorrow.appcenter") version "1.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.betomorrow.gradle:appcenter-plugin:1.0.1")
      }
    }
    
    apply(plugin = "com.betomorrow.appcenter")
  • Applying plugins to all subprojects .