com.buddybuild.sdkmanager
Owner: buddybuild
Plugin used to download support and sdk libraries if needed. https://github.com/BuddyBuild/sdk-manager-plugin
Sources: https://github.com/BuddyBuild/BBGradlePlugins.git
Version 0.0.50 (latest)
Created 08 January 2016.
Plugin used to download support and sdk libraries if needed. https://github.com/BuddyBuild/sdk-manager-plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("com.buddybuild.sdkmanager") version "0.0.50"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.buddybuild.sdkmanager:com.buddybuild.sdkmanager.gradle.plugin:0.0.50") }
It can then be applied in the precompiled script plugin:plugins { id("com.buddybuild.sdkmanager") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.buddybuild.sdkmanager:com.buddybuild.sdkmanager.gradle.plugin:0.0.50") } } apply(plugin = "com.buddybuild.sdkmanager")
- Applying plugins to all subprojects .