dev.afilippov.android.drawablegenerator
Owner: Alexander Filippov
Android gradle plugin to generate tinted vector drawables and png from svg resources
https://github.com/niveuseverto/android-drawable-generator
Sources: https://github.com/niveuseverto/android-drawable-generator
Version 0.1.0 (latest)
Created 05 January 2023.
Android gradle plugin to generate tinted vector drawables and png from svg resources
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.afilippov.android.drawablegenerator") version "0.1.0"
}
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("dev.afilippov.android.drawablegenerator:dev.afilippov.android.drawablegenerator.gradle.plugin:0.1.0") }
It can then be applied in the precompiled script plugin:plugins { id("dev.afilippov.android.drawablegenerator") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.afilippov.android.drawablegenerator:dev.afilippov.android.drawablegenerator.gradle.plugin:0.1.0") } } apply(plugin = "dev.afilippov.android.drawablegenerator")
- Applying plugins to all subprojects .