dev.yuyuyuyuyu.composepwa
Owner:
yu
A Gradle plugin to convert Compose Multiplatform web apps to PWA
https://github.com/yu-ko-ba/ComposePWA#readme
Sources: https://github.com/yu-ko-ba/ComposePWA
Version 0.4.0
Created 26 October 2025.
This Gradle plugin provides a Gradle Task, that build your Compose Multiplatform Web App as a PWA.
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.yuyuyuyuyu.composepwa") version "0.4.0"
}
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("dev.yuyuyuyuyu.composepwa:dev.yuyuyuyuyu.composepwa.gradle.plugin:0.4.0") }It can then be applied in the precompiled script plugin:plugins { id("dev.yuyuyuyuyu.composepwa") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("dev.yuyuyuyuyu.composepwa:dev.yuyuyuyuyu.composepwa.gradle.plugin:0.4.0") } } apply(plugin = "dev.yuyuyuyuyu.composepwa") - Applying plugins to all subprojects .