com.appswithlove.loco
Owner: Yannick Pulver
A plugin to synchronize Loco translations with Android project
https://github.com/appswithlove/loco-android/
Sources: https://github.com/appswithlove/loco-android/
Version 0.3.1 (latest)
0.3.1
Created 09 October 2023.
A plugin to synchronize Loco translations with Android project
Using the plugins DSL:
plugins {
id("com.appswithlove.loco") version "0.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.appswithlove.loco:loco:0.3.1")
}
}
apply(plugin = "com.appswithlove.loco")
Using the plugins DSL:
plugins {
id "com.appswithlove.loco" version "0.3.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.appswithlove.loco:loco:0.3.1"
}
}
apply plugin: "com.appswithlove.loco"