mirror of https://github.com/iSoron/uhabits.git
So that notifications are also restored after app upgradepull/1509/head
parent
857e21af1d
commit
68f2639c77
@ -0,0 +1,14 @@
|
|||||||
|
package org.isoron.uhabits.receivers
|
||||||
|
|
||||||
|
import android.content.BroadcastReceiver
|
||||||
|
import android.content.Context
|
||||||
|
import android.content.Intent
|
||||||
|
import android.util.Log
|
||||||
|
|
||||||
|
class UpdateReceiver : BroadcastReceiver() {
|
||||||
|
|
||||||
|
override fun onReceive(context: Context, intent: Intent) {
|
||||||
|
// Dummy receiver, relevant code is executed through HabitsApplication.
|
||||||
|
Log.d("UpdateReceiver", "Update receiver called.")
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in new issue