Alerter is now on Jitpack

This commit is contained in:
Benoit Marty 2021-12-09 23:37:06 +01:00
parent f69f303246
commit 29837d48fe
3 changed files with 3 additions and 4 deletions

View file

@ -52,6 +52,7 @@ allprojects {
includeGroup 'com.github.chrisbanes'
includeGroup 'com.github.hyuwah'
includeGroup 'com.github.jetradarmobile'
includeGroup 'com.github.tapadoo'
includeGroup 'com.github.vector-im'
includeGroup 'com.github.yalantis'
includeGroup 'com.github.Zhuinden'
@ -216,7 +217,6 @@ allprojects {
includeGroup 'com.amulyakhare'
includeGroup 'com.danikula'
includeGroup 'com.otaliastudios'
includeGroup 'com.tapadoo.android'
includeGroup 'com.yqritc'
includeGroup 'dk.ilios'
includeGroup 'im.dlg'

View file

@ -415,8 +415,7 @@ dependencies {
implementation 'com.arthenica:ffmpeg-kit-audio:4.5.LTS'
// Alerter
// TODO 7.2.4 is available
implementation 'com.tapadoo.android:alerter:7.0.1'
implementation 'com.github.tapadoo:alerter:7.2.4'
implementation 'com.otaliastudios:autocomplete:1.1.0'

View file

@ -104,7 +104,7 @@ class PopupAlertManager @Inject constructor() {
// we want to remove existing popup on previous activity and display it on new one
if (currentAlerter != null) {
weakCurrentActivity?.get()?.let {
Alerter.clearCurrent(it, null)
Alerter.clearCurrent(it, null, null)
if (currentAlerter?.isLight == false) {
setLightStatusBar()
}