DEV Community

Discussion on: Who's looking for open source contributors? (April 30 edition)

Collapse
 
karn profile image
Karn Saheb

Hello friends!

I've been working on a library for Android to simplify Notification delivery using fluent APIs written in Kotlin. It's called Notify and could definitely use your contributions -- whether that by way to writing code, tests and/or documentation or simply by pointing out issues.

A taste of the syntax:

Notify
    .with(context)
    .content { // this: Payload.Content.Default
        title = "New dessert menu"
        text = "The Cheesecake Factory has a new dessert for you to try!"
    }
    .show()

Basic usecase

The best part is that even though it is still being developed it doesn't mean that you are restricted to functionality. The APIs expose the NotificationCompat.Builder object and allow you to continue to build the notification as you would without the library!

You can check out/star the project at github.com/Karn/notify, and feel free to create issues and/or ping me either here or on GitHub!

🙌