mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
refactor: KMP Migration, Messaging Modularization, and Handshake Robustness (#4631)
Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com>
This commit is contained in:
parent
b3f88bd94f
commit
d408964f07
144 changed files with 1460 additions and 664 deletions
|
|
@ -15,10 +15,10 @@ dependencies {
|
|||
// The core AIDL interface and Intent constants
|
||||
implementation("com.github.meshtastic.Meshtastic-Android:meshtastic-android-api:v2.x.x")
|
||||
|
||||
// Data models (DataPacket, MeshUser, NodeInfo, etc.)
|
||||
// Data models (DataPacket, MeshUser, NodeInfo, etc.) - Kotlin Multiplatform
|
||||
implementation("com.github.meshtastic.Meshtastic-Android:meshtastic-android-model:v2.x.x")
|
||||
|
||||
// Protobuf definitions (PortNum, Telemetry, etc.)
|
||||
// Protobuf definitions (PortNum, Telemetry, etc.) - Kotlin Multiplatform
|
||||
implementation("com.github.meshtastic.Meshtastic-Android:meshtastic-android-proto:v2.x.x")
|
||||
}
|
||||
```
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
package org.meshtastic.core.model;
|
||||
|
||||
parcelable DataPacket;
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
package org.meshtastic.core.model;
|
||||
|
||||
parcelable MeshUser;
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
package org.meshtastic.core.model;
|
||||
|
||||
parcelable MyNodeInfo;
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
package org.meshtastic.core.model;
|
||||
|
||||
parcelable NodeInfo;
|
||||
|
|
@ -0,0 +1,3 @@
|
|||
package org.meshtastic.core.model;
|
||||
|
||||
parcelable Position;
|
||||
Loading…
Add table
Add a link
Reference in a new issue