All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.taig.android.app.broadcast.Receiver.scala Maven / Gradle / Ivy

There is a newer version: 0.8.2
Show newest version
package io.taig.android.app.broadcast

import android.content.Context

trait Receiver extends android.content.BroadcastReceiver {
    override final def onReceive( context: Context, intent: android.content.Intent ) = {
        onReceive( intent )( context )
    }

    def onReceive( intent: android.content.Intent )( implicit c: Context ): Unit
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy