com.tonyfinn.pydroid
Owner: Tony Finn
Plugin to bundle Pydroid applications for Android
http://bitbucket.org/tonyfinn/pydroid
Sources: http://bitbucket.org/tonyfinn/pydroid
Version 0.1.0-dev (latest)
Created 18 September 2015.
Plugin to bundle Pydroid applications for Android
Add this plugin to your build using the plugins DSL:
plugins {
id("com.tonyfinn.pydroid") version "0.1.0-dev"
}
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.tonyfinn.pydroid:com.tonyfinn.pydroid.gradle.plugin:0.1.0-dev") }
It can then be applied in the precompiled script plugin:plugins { id("com.tonyfinn.pydroid") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.tonyfinn.pydroid:com.tonyfinn.pydroid.gradle.plugin:0.1.0-dev") } } apply(plugin = "com.tonyfinn.pydroid")
- Applying plugins to all subprojects .