feat(tak): introduce built-in Local TAK Server and mesh integration (#4951)

Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
James Rich 2026-04-01 15:21:25 -05:00 committed by GitHub
parent d1ca8ec527
commit e249461e3c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
76 changed files with 4587 additions and 64 deletions

View file

@ -14,6 +14,8 @@
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
@file:Suppress("DEPRECATION")
package com.meshtastic.android.meshserviceexample
import android.content.BroadcastReceiver
@ -44,7 +46,17 @@ import org.meshtastic.core.service.IMeshService
private const val TAG: String = "MeshServiceExample"
/** MainActivity for the MeshServiceExample application. */
/**
* MainActivity for the MeshServiceExample application.
*
* **DEPRECATED.** This entire module (`mesh_service_example`) is scheduled for removal in a future release. Do not use
* it as a template for new integrations. See `:core:api` README for the current public API surface.
*/
@Deprecated(
message =
"mesh_service_example is deprecated and will be removed in a future release. " +
"See core/api/README.md for integration guidance.",
)
class MainActivity : ComponentActivity() {
private var meshService: IMeshService? = null