mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
feat: Complete app module thinning and feature module extraction (#4844)
This commit is contained in:
parent
dcbbc0823b
commit
1b0dc75dfe
54 changed files with 439 additions and 119 deletions
|
|
@ -12,12 +12,16 @@ This is the public android API for talking to meshtastic radios.
|
|||
|
||||
To connect to meshtastic you should bind to it per https://developer.android.com/guide/components/bound-services
|
||||
|
||||
The intent you use to reach the service should look like this:
|
||||
The intent you use to reach the service should ideally use the action string:
|
||||
|
||||
val intent = Intent("com.geeksville.mesh.Service")
|
||||
|
||||
Or if using an explicit intent:
|
||||
|
||||
val intent = Intent().apply {
|
||||
setClassName(
|
||||
"com.geeksville.mesh",
|
||||
"com.geeksville.mesh.service.MeshService"
|
||||
"org.meshtastic.core.service.MeshService"
|
||||
)
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue