Search Gradle plugins

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

Using the plugins DSL:

plugins {
  id("app.futured.sheethappens") version "0.5.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("app.futured.sheethappens:plugin:0.5.7")
  }
}

apply(plugin = "app.futured.sheethappens")

Using the plugins DSL:

plugins {
  id "app.futured.sheethappens" version "0.5.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "app.futured.sheethappens:plugin:0.5.7"
  }
}

apply plugin: "app.futured.sheethappens"

Learn how to apply plugins to subprojects