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

0.1

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"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.net.mbonnin:strings2xls:0.1")
      }
    }
    
    apply(plugin = "net.mbonnin.android.strings2xls")
  • Applying plugins to all subprojects .