Meshtastic-Android/app/src/main/java/com/geeksville/meshutil/BootCompleteReceiver.kt

14 lines
408 B
Kotlin
Raw Normal View History

2020-01-21 09:37:39 -08:00
package com.geeksville.meshutil
import android.content.BroadcastReceiver
import android.content.Context
import android.content.Intent
class BootCompleteReceiver : BroadcastReceiver() {
override fun onReceive(mContext: Context, intent: Intent) {
if (intent.action == Intent.ACTION_BOOT_COMPLETED) {
// FIXME - start listening for bluetooth messages from our device
}
}
}