vault / meshtastic-android / 2.5.17
meshtastic-android @ 2.5.17
integrity
- size
- 3.3 MiB
- downloaded
- last checked
release notes
What's Changed
- refactor: remove deprecated
AppCompatThemeby @andrekir in https://github.com/meshtastic/Meshtastic-Android/pull/1524 - refactor: migrate
ShareFragmentto Compose by @andrekir in https://github.com/meshtastic/Meshtastic-Android/pull/1525 - refactor: replace
Scaffoldwith internal component by @andrekir in https://github.com/meshtastic/Meshtastic-Android/pull/1526 - refactor: move
RadioConfigfiles to separate package by @andrekir in https://github.com/meshtastic/Meshtastic-Android/pull/1540 - refactor: move
NavGraphto navigation package by @andrekir in https://github.com/meshtastic/Meshtastic-Android/pull/1541 - feat: Add 'dependencies' label to Renovate PRs by @jamesarich in https://github.com/meshtastic/Meshtastic-Android/pull/1585
- chore(deps): update gradle to v8.12.1 by @renovate in https://github.com/meshtastic/Meshtastic-Android/pull/1563
- chore(deps): update androidx.compose:compose-bom to v2025 by @renovate in https://github.com/meshtastic/Meshtastic-Android/pull/1550
- chore(deps): update kotlin_version to v2.1.10 by @renovate in https://github.com/meshtastic/Meshtastic-Android/pull/1436
- chore(deps): update protobuf_version to v4.29.3 by @renovate in https://github.com/meshtastic/Meshtastic-Android/pull/1532
- chore(deps): update com.google.firebase:firebase-bom to v33.9.0 by @renovate in https://github.com/meshtastic/Meshtastic-Android/pull/1564
- chore(deps): update hilt_version to v2.55 by @renovate in https://github.com/meshtastic/Meshtastic-Android/pull/1537
- chore(deps): update com.google.firebase:firebase-crashlytics-gradle to v3.0.3 by @renovate in https://github.com/meshtastic/Meshtastic-Android/pull/1587
- chore(deps): update org.jetbrains.kotlinx:kotlinx-serialization-json to v1.8.0 by @renovate in https://github.com/meshtastic/Meshtastic-Android/pull/1523
- chore(deps): update coroutines_version to v1.10.1 by @renovate in https://github.com/meshtastic/Meshtastic-Android/pull/1491
- chore(deps): update com.suddenh4x.ratingdialog:awesome-app-rating to v2.8.0 by @renovate in https://github.com/meshtastic/Meshtastic-Android/pull/1570
- chore(deps): update nav_version to v2.8.7 by @renovate in https://github.com/meshtastic/Meshtastic-Android/pull/1569
- chore(deps): update androidx.datastore:datastore to v1.1.2 by @renovate in https://github.com/meshtastic/Meshtastic-Android/pull/1549
- chore(deps): update androidx.fragment:fragment-ktx to v1.8.6 by @renovate in https://github.com/meshtastic/Meshtastic-Android/pull/1586
- chore(deps): update com.android.tools.build:gradle to v8.8.1 by @renovate in https://github.com/meshtastic/Meshtastic-Android/pull/1536
- chore(deps): update plugin com.google.devtools.ksp to v2.1.10-1.0.30 by @renovate in https://github.com/meshtastic/Meshtastic-Android/pull/1437
- fix: Add missing sensor value units to Node Details cards by @Kealper in https://github.com/meshtastic/Meshtastic-Android/pull/1583
- feat: Add RAK2560 hardware model and graphic by @jamesarich in https://github.com/meshtastic/Meshtastic-Android/pull/1543
- fixes #1557: Filter out emojis when creating short names by @jsoberg in https://github.com/meshtastic/Meshtastic-Android/pull/1578
- Power graph by @Robert-0410 in https://github.com/meshtastic/Meshtastic-Android/pull/1556
- fix: limit quick chat append, prevent duplicates by @jamesarich in https://github.com/meshtastic/Meshtastic-Android/pull/1522
- feat: Initial implementation of adding nodes to favorites by @Kealper in https://github.com/meshtastic/Meshtastic-Android/pull/1520
- Introduction of stable Compose UI State and some simple animations in Debug Panel by @jsoberg in https://github.com/meshtastic/Meshtastic-Android/pull/1575
- [Quick UI Update] Apply a background to the filter search sticky header by @jsoberg in https://github.com/meshtastic/Meshtastic-Android/pull/1588
- chore: update proto submodule to v2.5.22 by @jamesarich in https://github.com/meshtastic/Meshtastic-Android/pull/1589
- [Quick UI Update] Animate user node list items on details expansion by @jsoberg in https://github.com/meshtastic/Meshtastic-Android/pull/1590
- 2.5.17 by @jamesarich in https://github.com/meshtastic/Meshtastic-Android/pull/1591
New Contributors
- @Kealper made their first contribution in https://github.com/meshtastic/Meshtastic-Android/pull/1583
- @jsoberg made their first contribution in https://github.com/meshtastic/Meshtastic-Android/pull/1578
Full Changelog: https://github.com/meshtastic/Meshtastic-Android/compare/2.5.16...2.5.17
download
unix · zip
curl -fL -o 2.5.17.zip https://ratatoskr.space/pkg/meshtastic-android/2.5.17.zip
printf '%s %s\n' '02ea1eb5f05e883e3456e688492a4c3259f9b3d244dda5d962f8766f028af6eb' '2.5.17.zip' | sha256sum -c -
windows · zip
$url = "https://ratatoskr.space/pkg/meshtastic-android/2.5.17.zip"
$out = "2.5.17.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "02ea1eb5f05e883e3456e688492a4c3259f9b3d244dda5d962f8766f028af6eb") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 2.5.17.tar.gz https://ratatoskr.space/pkg/meshtastic-android/2.5.17.tar.gz
printf '%s %s\n' 'b159c206f57eecd2d2f3c9eb2ace2cd233a1ed8a70be42f3101c926da4d4fe6b' '2.5.17.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "https://ratatoskr.space/pkg/meshtastic-android/2.5.17.tar.gz"
$out = "2.5.17.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "b159c206f57eecd2d2f3c9eb2ace2cd233a1ed8a70be42f3101c926da4d4fe6b") { throw "sha256 mismatch" }
download via yggdrasil mesh
unix · zip
curl -fL -o 2.5.17.zip http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-android/2.5.17.zip
printf '%s %s\n' '02ea1eb5f05e883e3456e688492a4c3259f9b3d244dda5d962f8766f028af6eb' '2.5.17.zip' | sha256sum -c -
windows · zip
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-android/2.5.17.zip"
$out = "2.5.17.zip"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "02ea1eb5f05e883e3456e688492a4c3259f9b3d244dda5d962f8766f028af6eb") { throw "sha256 mismatch" }
unix · tar.gz
curl -fL -o 2.5.17.tar.gz http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-android/2.5.17.tar.gz
printf '%s %s\n' 'b159c206f57eecd2d2f3c9eb2ace2cd233a1ed8a70be42f3101c926da4d4fe6b' '2.5.17.tar.gz' | sha256sum -c -
windows · tar.gz
$url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-android/2.5.17.tar.gz"
$out = "2.5.17.tar.gz"
Invoke-WebRequest -Uri $url -OutFile $out
if ((Get-FileHash $out -Algorithm SHA256).Hash.ToLowerInvariant() -ne "b159c206f57eecd2d2f3c9eb2ace2cd233a1ed8a70be42f3101c926da4d4fe6b") { throw "sha256 mismatch" }
| artifact | format | size | hashes |
|---|---|---|---|
| 2.5.17.zip | zip | 3.3 MiB |
blake3-24 fc9642f20f2e2369ba94337b805cc553455b7a8d833d4adb
sha256 02ea1eb5f05e883e3456e688492a4c3259f9b3d244dda5d962f8766f028af6eb
sha1 d61e21507e23081ebc7d5a506398e1dae7928449
|
| 2.5.17.tar.gz | tar.gz | 2.9 MiB |
blake3-24 2c9e1890886bd362139414b5789217080e4b764ad3ae8c43
sha256 b159c206f57eecd2d2f3c9eb2ace2cd233a1ed8a70be42f3101c926da4d4fe6b
sha1 26924124eaaac0b31debac65b9a605e0ef3c6940
|
install
bazel
http_archive(
name = "meshtastic-android",
urls = ["https://ratatoskr.space/pkg/meshtastic-android/2.5.17.tar.gz"],
integrity = "sha256-sVnCBvV+7NLS88nrKs4s0jOh7YpwvkLzEBySbaTU/ms=",
strip_prefix = "meshtastic-android-2.5.17",
)
zig
.url = "https://ratatoskr.space/pkg/meshtastic-android/2.5.17.tar.gz",
install via yggdrasil mesh
bazel
http_archive(
name = "meshtastic-android",
urls = ["http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-android/2.5.17.tar.gz"],
integrity = "sha256-sVnCBvV+7NLS88nrKs4s0jOh7YpwvkLzEBySbaTU/ms=",
strip_prefix = "meshtastic-android-2.5.17",
)
zig
.url = "http://14cc7d57b5e70f679b851fe5b272ce17c70632ff4beb5b35ab64bc706b2485af.pk.ygg/pkg/meshtastic-android/2.5.17.tar.gz",