From f4c6ee66cfe895277ad77e72dbf0126880e1594c Mon Sep 17 00:00:00 2001 From: Oliver Date: Sun, 26 Apr 2026 09:43:28 +1000 Subject: [PATCH] Update ndk version (#814) * Update ndk version * Robustify unit test --- android/app/build.gradle | 2 +- test/barcode_test.dart | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/android/app/build.gradle b/android/app/build.gradle index 71834ec6..368e41b2 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -30,7 +30,7 @@ if (keystorePropertiesFile.exists()) { android { namespace "inventree.inventree_app" - ndkVersion "26.3.11579264" + ndkVersion "28.2.13676358" compileSdkVersion 36 compileOptions { diff --git a/test/barcode_test.dart b/test/barcode_test.dart index fc732a11..d4b8561a 100644 --- a/test/barcode_test.dart +++ b/test/barcode_test.dart @@ -110,7 +110,7 @@ void main() { assert(item != null); assert(item!.pk == id); - assert(item!.locationId == 1); + assert(int.tryParse(item!.locationId.toString()) != null); } }); });