2
0
mirror of https://github.com/inventree/inventree-app.git synced 2026-05-01 05:24:19 +00:00

Update ndk version (#814)

* Update ndk version

* Robustify unit test
This commit is contained in:
Oliver
2026-04-26 09:43:28 +10:00
committed by GitHub
parent a748398c67
commit f4c6ee66cf
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ if (keystorePropertiesFile.exists()) {
android { android {
namespace "inventree.inventree_app" namespace "inventree.inventree_app"
ndkVersion "26.3.11579264" ndkVersion "28.2.13676358"
compileSdkVersion 36 compileSdkVersion 36
compileOptions { compileOptions {
+1 -1
View File
@@ -110,7 +110,7 @@ void main() {
assert(item != null); assert(item != null);
assert(item!.pk == id); assert(item!.pk == id);
assert(item!.locationId == 1); assert(int.tryParse(item!.locationId.toString()) != null);
} }
}); });
}); });