Search Gradle plugins

com.trello.victor

Owner: Dan Lew

Gradle plugin that lets an Android project use SVGs as resources.

https://github.com/trello/victor

Version 0.1.5

Created 07 October 2015.

No version description available.

Using the plugins DSL:

plugins {
  id("com.trello.victor") version "0.1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.trello:victor:0.1.5")
  }
}

apply(plugin = "com.trello.victor")

Using the plugins DSL:

plugins {
  id "com.trello.victor" version "0.1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.trello:victor:0.1.5"
  }
}

apply plugin: "com.trello.victor"

Learn how to apply plugins to subprojects