feat: Complete app module thinning and feature module extraction (#4844)

This commit is contained in:
James Rich 2026-03-18 19:21:18 -05:00 committed by GitHub
parent dcbbc0823b
commit 1b0dc75dfe
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
54 changed files with 439 additions and 119 deletions

View file

@ -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"
)
}