Search Gradle plugins

io.github.lyh990517.notion-stringboard

Owner: yunho

A Gradle plugin that automatically generates Android string resources from Notion database with multi-language support

https://github.com/lyh990517/android-notion-string-plugin

Sources: https://github.com/lyh990517/android-notion-string-plugin

Version 1.0.10 (latest)

Created 15 September 2025.

A Gradle plugin that automatically generates Android string resources from Notion database with multi-language support

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.lyh990517.notion-stringboard") version "1.0.10"
}

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