Search Gradle plugins

com.mermake.locale-resource-generator

Automatically generates locale_config.xml for per-app language support on Android 13 and higher. Also generates map of supported locales/languages for use in a runtime language picker.

https://adamormsby.com

Sources: https://github.com/aormsby/android-locale-resource-generator

Version 0.1 (latest)

Created 25 January 2023.

Automatically generates locale_config.xml for per-app language support on Android 13 and higher. Also generates map of supported locales/languages for use in a runtime language picker.

Using the plugins DSL:

plugins {
  id("com.mermake.locale-resource-generator") version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.mermake:LocaleResourceGenerator:0.1")
  }
}

apply(plugin = "com.mermake.locale-resource-generator")

Using the plugins DSL:

plugins {
  id "com.mermake.locale-resource-generator" version "0.1"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.mermake:LocaleResourceGenerator:0.1"
  }
}

apply plugin: "com.mermake.locale-resource-generator"

Learn how to apply plugins to subprojects