Search Gradle plugins

com.buddybuild.bbsdkmanager

Plugin used to download support and sdk libraries if needed. https://github.com/BuddyBuild/sdk-manager-plugin

Sources: https://github.com/BuddyBuild/BBGradlePlugins.git

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.buddybuild.bbsdkmanager") version "0.0.163"
}

See also:

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