dev.randos.resourcemanager
Owner: Vishal Kumar
ResourceManager is an Android plugin that simplifies accessing Android resources (strings, colors, drawables, etc.) in both Android and non-Android components (e.g., ViewModel) using generated code.
https://github.com/vsnappy1/resourcemanager
Sources: https://github.com/vsnappy1/ResourceManager
Version 0.0.7
Created 23 November 2024.
ResourceManager is an Android plugin that simplifies accessing Android resources (strings, colors, drawables, etc.) in both Android and non-Android components (e.g., ViewModel) using generated code.
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.randos.resourcemanager") version "0.0.7"
}
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.randos.resourcemanager:dev.randos.resourcemanager.gradle.plugin:0.0.7") }
It can then be applied in the precompiled script plugin:plugins { id("dev.randos.resourcemanager") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.randos.resourcemanager:dev.randos.resourcemanager.gradle.plugin:0.0.7") } } apply(plugin = "dev.randos.resourcemanager")
- Applying plugins to all subprojects .