Notifications for Android (like a Toast)
Current version: 1.01
Into your build.gradle:
repositories {
maven { url "https://jitpack.io" }
}
dependencies {
compile 'com.github.Pierry:SimpleToast:v1.01'
}
Ref. https://jitpack.io/#Pierry/SimpleToast/v1.01
The API is kept as simple as the Toast API:
Create a SimpleToast for any CharSequence:
SimpleToast.ok(Context, CharSequence);
SimpleToast.error(Context, CharSequence);
SimpleToast.info(Context, CharSequence);
Questions regarding SimpleToast can be asked on StackOverflow, using the simpletoast tag.

