com.avito.android.kotlin-root
Owner: Dmitriy Voronin
Avito Android Plugin
https://avito-tech.github.io/avito-android
Sources: https://github.com/avito-tech/avito-android
Version 2020.2.5 (latest)
2020.2.5
Created 07 February 2020.
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
Avito Android Plugin
Using the plugins DSL:
plugins {
id("com.avito.android.kotlin-root") version "2020.2.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.avito.android:kotlin-config:2020.2.5")
}
}
apply(plugin = "com.avito.android.kotlin-root")
Using the plugins DSL:
plugins {
id "com.avito.android.kotlin-root" version "2020.2.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.avito.android:kotlin-config:2020.2.5"
}
}
apply plugin: "com.avito.android.kotlin-root"