Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,22 @@ Full module documentation: [hexdocs.pm/mob_dev](https://hexdocs.pm/mob_dev).

---

## [0.6.23] - 2026-07-12

### Fixed
- **`cpp_archive` / nx_eigen NDK resolution honors `ANDROID_HOME`.**
`MobDev.Plugin.CppArchive` and `MobDev.NxEigenNif` hardcoded
`~/Library/Android/sdk/ndk/<ver>` (+ the `darwin-x86_64` host), ignoring
`ANDROID_HOME` / `ANDROID_SDK_ROOT` — so a `lang: :cpp_archive` plugin build
failed with `NDK toolchain not found` wherever the NDK lives elsewhere (CI, a
shared SDK), unlike the main `NativeBuild` path. Extracted shared
`MobDev.NdkVersion.{root,host,toolchain_bin,sysroot}/0` (on the existing
env-aware `sdk_root/0`) and routed `cpp_archive`, `nx_eigen_nif`, and
`native_build`'s `ndk_sysroot` through them — one source of truth, so the NDK
path can't diverge again. (MOB-89)

---

## [0.6.22] - 2026-07-11

### Added
Expand Down
2 changes: 1 addition & 1 deletion mix.exs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ defmodule MobDev.MixProject do
def project do
[
app: :mob_dev,
version: "0.6.22",
version: "0.6.23",
elixir: "~> 1.19",
description: "Development tooling for the Mob mobile framework",
source_url: "https://github.com/genericjam/mob_dev",
Expand Down
Loading