mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
14 lines
No EOL
429 B
Kotlin
14 lines
No EOL
429 B
Kotlin
package com.geeksville.mesh.service
|
|
|
|
import android.content.BroadcastReceiver
|
|
import android.content.Context
|
|
import android.content.Intent
|
|
import com.geeksville.mesh.android.Logging
|
|
|
|
|
|
class BootCompleteReceiver : BroadcastReceiver(), Logging {
|
|
override fun onReceive(mContext: Context, intent: Intent) {
|
|
// start listening for bluetooth messages from our device
|
|
MeshService.startServiceLater(mContext)
|
|
}
|
|
} |