move to geeksville/mesh

This commit is contained in:
geeksville 2020-01-22 21:46:41 -08:00
parent 0903bfab6f
commit 3551eedb8a
15 changed files with 30 additions and 32 deletions

View file

@ -1,31 +0,0 @@
package com.geeksville.meshutil
import android.app.Service
import android.content.Intent
import android.os.IBinder
class MeshService : Service() {
override fun onBind(intent: Intent): IBinder {
// Return the interface
return binder
}
private val binder = object : IMeshService.Stub() {
override fun setOwner(myId: String?, longName: String?, shortName: String?) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
override fun sendOpaque(destId: String?, payload: ByteArray?) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
override fun getOnline(ids: Array<out String>?) {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
override fun isConnected(): Boolean {
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
}
}
}