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 1.0.0 (latest)

Created 26 February 2024.

Gradle plugin for generating Android / KMP string translations from Google Spreadsheets

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

apply plugin: "app.futured.sheethappens"

Learn how to apply plugins to subprojects