Search Gradle plugins

com.likethesalad.stem-library

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.8.0 (latest)

Created 15 March 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.8.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.likethesalad.android:stem-plugin:2.8.0")
  }
}

apply(plugin = "com.likethesalad.stem-library")

Using the plugins DSL:

plugins {
  id "com.likethesalad.stem-library" version "2.8.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.likethesalad.android:stem-plugin:2.8.0"
  }
}

apply plugin: "com.likethesalad.stem-library"

Learn how to apply plugins to subprojects