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 1.1.2 (latest)

Created 08 June 2021.

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "com.trello.victor"

Learn how to apply plugins to subprojects