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.5 (latest)
0.0.5
Created 21 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.
Using the plugins DSL:
plugins {
id("dev.randos.resourcemanager") version "0.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.randos:resourcemanager:0.0.5")
}
}
apply(plugin = "dev.randos.resourcemanager")
Using the plugins DSL:
plugins {
id "dev.randos.resourcemanager" version "0.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.randos:resourcemanager:0.0.5"
}
}
apply plugin: "dev.randos.resourcemanager"