com.icesmith.androidtextresolver
Owner: Valeriy Katkov
Android Text Resolver
https://github.com/icesmith/android-text-resolver
Sources: https://github.com/icesmith/android-text-resolver
Version 1.0.2
1.0.2
Created 27 April 2017.
This plugin allows you to refer one android string from another.
Using the plugins DSL:
plugins {
id("com.icesmith.androidtextresolver") version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.icesmith.androidtextresolver:buildSrc:1.0.2")
}
}
apply(plugin = "com.icesmith.androidtextresolver")
Using the plugins DSL:
plugins {
id "com.icesmith.androidtextresolver" version "1.0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.icesmith.androidtextresolver:buildSrc:1.0.2"
}
}
apply plugin: "com.icesmith.androidtextresolver"