Search Gradle plugins

Version 1.0.0 (latest)

1.0.0

Created 11 October 2024.

Gradle Plugin for Converting SVG file to Compose ImageVector

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.irgaly.compose-vector") version "1.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.irgaly.compose-vector:plugin:1.0.0")
      }
    }
    
    apply(plugin = "io.github.irgaly.compose-vector")
  • Applying plugins to all subprojects .