Search Gradle plugins

com.likethesalad.stem

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 3.0.0 (latest)

Created 02 November 2025.

Resolves Android app's XML string references in other XML strings at compile time.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.likethesalad.stem") version "3.0.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("com.likethesalad.stem:com.likethesalad.stem.gradle.plugin:3.0.0")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.likethesalad.stem")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.likethesalad.stem:com.likethesalad.stem.gradle.plugin:3.0.0")
      }
    }
    
    apply(plugin = "com.likethesalad.stem")
  • Applying plugins to all subprojects .