aboutsummaryrefslogtreecommitdiff
path: root/app/src/main/kotlin/com/pitchedapps/frost/services/NotificationReceiver.kt
blob: b37ca1f85add83f4d3e21fdb7b184b836f00787a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
package com.pitchedapps.frost.services

import android.content.BroadcastReceiver
import android.content.Context
import android.content.Intent

/**
 * Created by Allan Wang on 2017-05-31.
 */
class NotificationReceiver : BroadcastReceiver() {

    companion object {
        const val ACTION = "com.pitchedapps.frost.NOTIFICATIONS"
    }

    override fun onReceive(context: Context, intent: Intent) {
        if (intent.action != ACTION) return
    }

}