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.1.0 (latest)
Created 11 March 2025.
A Gradle plugin to convert Compose Multiplatform web apps to PWA
Add this plugin to your build using the plugins DSL:
plugins {
id("dev.yuyuyuyuyu.composepwa") version "0.1.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.1.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.1.0") } } apply(plugin = "dev.yuyuyuyuyu.composepwa")
- Applying plugins to all subprojects .