Search Gradle plugins

Version 1.9.0 (latest)

1.9.0

Created 10 June 2019.

This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact Plugin to build/package/deploy Xamarin library.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.betomorrow.xamarin.library") version "1.9.0"
}

See also:

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