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.2.2

Created 31 August 2022.

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.2.2"
}

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects