io.github.furutuki.android-svg-transcoder
Owner: HU Zhong
A gradle plugin that helps you transcode svg files to android source file(Java), with which you can compile and use the generated classes to render svg image in canvas
https://github.com/furutuki/AndroidSvgTranscoder
Sources: https://github.com/furutuki/AndroidSvgTranscoder.git
Version 0.1.1 (latest)
Created 03 January 2023.
A gradle plugin that helps you transcode svg files to android source file(Java), with which you can compile and use the generated classes to render svg image in canvas
Add this plugin to your build using the plugins DSL:
plugins {
id("io.github.furutuki.android-svg-transcoder") version "0.1.1"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("io.github.furutuki.android-svg-transcoder:io.github.furutuki.android-svg-transcoder.gradle.plugin:0.1.1") }
It can then be applied in the precompiled script plugin:plugins { id("io.github.furutuki.android-svg-transcoder") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.github.furutuki.android-svg-transcoder:io.github.furutuki.android-svg-transcoder.gradle.plugin:0.1.1") } } apply(plugin = "io.github.furutuki.android-svg-transcoder")
- Applying plugins to all subprojects .