mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
14 lines
No EOL
404 B
Kotlin
14 lines
No EOL
404 B
Kotlin
package com.geeksville.mesh
|
|
|
|
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
|
|
}
|
|
}
|
|
} |