/toast-compat

Toast notification polyfill.

Primary LanguageJavaMIT LicenseMIT

ToastCompat

Build Status JitPack.io

Protect toasts from being disabled by feature introduced in Android >= 4.2 (Jelly Bean).

Usage

Add dependency to gradle build script:

repositories {
    maven { url "https://jitpack.io"  }
}

dependencies {
    compile 'moe.banana:toast-compat:<version>'
}

And toast:

ToastCompat.makeText(context, "hello world!", Toast.LENGTH_SHORT).show();

License

(The MIT License)