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

Created 10 November 2024.

This is a Gradle plugin for Android applications which resolves XML string references in other XML strings.

Add this plugin to your build using the plugins DSL:

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