Search Gradle plugins

com.likandr.lokalise

Owner: Nikolay

This is a gradle plugin for android. Refresh (upload and download) localization files using lokalise.co

https://likandr.github.io/lokalise-plugin/

Sources: https://github.com/

Version 1.3 (latest)

Created 19 July 2018.

This is a gradle plugin for android. Refresh (upload and download) localization files using lokalise.co

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.likandr.lokalise") version "1.3"
}

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("com.likandr.lokalise:com.likandr.lokalise.gradle.plugin:1.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.likandr.lokalise")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.likandr.lokalise:com.likandr.lokalise.gradle.plugin:1.3")
      }
    }
    
    apply(plugin = "com.likandr.lokalise")
  • Applying plugins to all subprojects .