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 1.0.3 (latest)
Created 22 November 2024.
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 "1.0.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("app.futured.sheethappens:app.futured.sheethappens.gradle.plugin:1.0.3") }
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:1.0.3") } } apply(plugin = "app.futured.sheethappens")
- Applying plugins to all subprojects .