com.likethesalad.stem-library
Owner: Cesar Munoz
This is a Gradle plugin for Android applications which resolves XML string references in other XML strings.
https://github.com/LikeTheSalad/android-stem
Sources: https://github.com/LikeTheSalad/android-stem
Version 2.12.0 (latest)
2.12.0
Created 10 November 2024.
This is a Gradle plugin for Android applications which resolves XML string references in other XML strings.
Using the plugins DSL:
plugins {
id("com.likethesalad.stem-library") version "2.12.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.likethesalad.android:stem-plugin:2.12.0")
}
}
apply(plugin = "com.likethesalad.stem-library")
Using the plugins DSL:
plugins {
id "com.likethesalad.stem-library" version "2.12.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.likethesalad.android:stem-plugin:2.12.0"
}
}
apply plugin: "com.likethesalad.stem-library"