io.github.jonathanimperato.loco-sync
Owner: Jonathan Imperato
A custom Gradle Plugin useful to sync loco string resources to local projects.
https://github.com/JonathanImperato/loco-strings-sync
Sources: https://github.com/JonathanImperato/loco-strings-sync
Version 0.0.25 (latest)
0.0.25
Created 21 November 2024.
A custom Gradle Plugin useful to sync loco string resources to local projects.
Using the plugins DSL:
plugins {
id("io.github.jonathanimperato.loco-sync") version "0.0.25"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.github.jonathanimperato:loco-sync:0.0.25")
}
}
apply(plugin = "io.github.jonathanimperato.loco-sync")
Using the plugins DSL:
plugins {
id "io.github.jonathanimperato.loco-sync" version "0.0.25"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.github.jonathanimperato:loco-sync:0.0.25"
}
}
apply plugin: "io.github.jonathanimperato.loco-sync"