dev.shushant.localization.plugin
Owner: Shushant tiwari
Simplify and streamline the localization process for your Android app with the App Localization Plugin.
Sources: https://github.com/dev-shushant/gradle-localization-plugin.git
Version 1.0.1 (latest)
1.0.1
Created 29 December 2023.
Simplify and streamline the localization process for your Android app with the App Localization Plugin.
Using the plugins DSL:
plugins {
id("dev.shushant.localization.plugin") version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("dev.shushant:gradle-localization-plugin:1.0.1")
}
}
apply(plugin = "dev.shushant.localization.plugin")
Using the plugins DSL:
plugins {
id "dev.shushant.localization.plugin" version "1.0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "dev.shushant:gradle-localization-plugin:1.0.1"
}
}
apply plugin: "dev.shushant.localization.plugin"