com.betomorrow.xamarin.application
Owner: Gauthier
Plugin to build Xamarin application.
https://github.com/oliviergauthier/xam-gradle-plugins
Sources: https://github.com/oliviergauthier/xam-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 Xamarin application.
Using the plugins DSL:
plugins {
id("com.betomorrow.xamarin.application") version "1.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.betomorrow.gradle:xamarin-application-plugin:1.9.0")
}
}
apply(plugin = "com.betomorrow.xamarin.application")
Using the plugins DSL:
plugins {
id "com.betomorrow.xamarin.application" version "1.9.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.betomorrow.gradle:xamarin-application-plugin:1.9.0"
}
}
apply plugin: "com.betomorrow.xamarin.application"