Simplification in the use of notifications.
SimpleNotify implements the Fluent API pattern to generate notifications intuitively, eliminating the need to worry about the complexities of different Android API versions. Integrate notifications into your Android projects with ease, so you can stop wasting time with documentation and focus on what really matters: Your work.
Use Gradle - with Groovy
dependencies {
implementation 'com.vanskarner.android:simplenotify:1.0.0'
}
Use Gradle - with Kotlin DSL
dependencies {
implementation("com.vanskarner.android:simplenotify:1.0.0")
}
SimpleNotify uses notification types for its publication, this is the simplest use case:
SimpleNotify.with(context)
.asBasic { // this: Data.BasicData
title = "New government scandals"
text = "Covenants, Armoring, Influence peddling and others"
}
.show()

See the quick start in the wiki for other types of notifications and additional features.
- @vanskarner and @luisolazo on GitHub
- @vanskarner on Twitter
- luisolazo on Kaggle
There are many ways to contribute:
- Submit bugs and issue reports.
- Help track and prioritize ongoing issues.
- Review and suggest improvements to code changes.
- Update documentation or improve examples.
- Share feedback and ideas for new features.