Search Gradle plugins

dev.shushant.localization.plugin

Simplify and streamline the localization process for your Android app with the App Localization Plugin.

https://www.shushant.dev/

Sources: https://github.com/dev-shushant/gradle-localization-plugin.git

Version 1.0.1 (latest)

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"

Learn how to apply plugins to subprojects