Search Gradle plugins

net.mbonnin.android.strings2xls

A plugin that takes your strings.xml files and merges them in a single excel file for your translators

https://github.com/martinbonnin/strings2xls

Sources: https://github.com/martinbonnin/strings2xls

Version 0.1-SNAPSHOT

Created 23 November 2017.

A plugin that takes your strings.xml files and merges them in a single excel file for your translators

Add this plugin to your build using the plugins DSL:

plugins {
  id("net.mbonnin.android.strings2xls") version "0.1-SNAPSHOT"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("net.mbonnin.android.strings2xls:net.mbonnin.android.strings2xls.gradle.plugin:0.1-SNAPSHOT")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("net.mbonnin.android.strings2xls")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("net.mbonnin.android.strings2xls:net.mbonnin.android.strings2xls.gradle.plugin:0.1-SNAPSHOT")
      }
    }
    
    apply(plugin = "net.mbonnin.android.strings2xls")
  • Applying plugins to all subprojects .