app.futured.sheethappens
Owner:
Futured
Gradle plugin for generating Android / KMP string translations from Google Spreadsheets
https://github.com/futuredapp/sheet-happens
Sources: https://github.com/futuredapp/sheet-happens
Version 0.5.7
Created 22 November 2023.
Gradle plugin for generating Android / KMP string translations from Google Spreadsheets
Add this plugin to your build using the plugins DSL:
plugins {
id("app.futured.sheethappens") version "0.5.7"
}
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("app.futured.sheethappens:app.futured.sheethappens.gradle.plugin:0.5.7") }It can then be applied in the precompiled script plugin:plugins { id("app.futured.sheethappens") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("app.futured.sheethappens:app.futured.sheethappens.gradle.plugin:0.5.7") } } apply(plugin = "app.futured.sheethappens") - Applying plugins to all subprojects .