compose-native-notification-js
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.kdroidfilter</groupId> <artifactId>compose-native-notification-js</artifactId> <version>0.2.0</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <!-- This module was also published with a richer model, Gradle metadata, --> <!-- which should be used instead. Do not delete the following line which --> <!-- is to indicate to Gradle or any Gradle module metadata file consumer --> <!-- that they should prefer consuming it instead. --> <!-- do_not_remove: published-with-gradle-metadata --> <modelVersion>4.0.0</modelVersion> <groupId>io.github.kdroidfilter</groupId> <artifactId>compose-native-notification-js</artifactId> <version>0.2.0</version> <packaging>klib</packaging> <name>Compose Native Notification</name> <description>The Compose Native Notification library is a Kotlin Multiplatform library designed to work with Compose Multiplatform that enables developers to add notifications to their applications in a unified way across different platforms, including Windows, Linux, Android, and macOS. The main goal of this library is to provide a declarative way to send notifications on Android while removing all boilerplate code, and to enable sending native notifications on other platforms. The library provides seamless integration with Jetpack Compose, allowing notifications to be handled consistently within Compose-based applications.</description> <url>https://github.com/kdroidFilter/ComposeNativeNotification</url> <inceptionYear>2024</inceptionYear> <licenses> <license> <name>MIT</name> <url>https://opensource.org/licenses/MIT</url> </license> </licenses> <developers> <developer> <id>kdroidfilter</id> <name>Elyahou Hadass</name> <email>elyahou.hadass@gmail.com</email> </developer> </developers> <scm> <url>https://github.com/kdroidFilter/ComposeNativeNotification</url> </scm> <dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-dom-api-compat</artifactId> <version>2.0.21</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-stdlib-js</artifactId> <version>2.0.21</version> <scope>compile</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-core-js</artifactId> <version>1.9.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains.kotlinx</groupId> <artifactId>kotlinx-coroutines-test-js</artifactId> <version>1.9.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>io.github.kdroidfilter</groupId> <artifactId>kmplog-js</artifactId> <version>0.2.0</version> <scope>runtime</scope> </dependency> <dependency> <groupId>org.jetbrains.compose.runtime</groupId> <artifactId>runtime-js</artifactId> <version>1.7.0</version> <scope>runtime</scope> </dependency> </dependencies> </project>