feat: update license type to nonprofit and add jni to plugin lists; bump dependencies for flutter_local_notifications, package_info_plus, share_plus, flutter_blue_plus_platform_interface, and llamadart

This commit is contained in:
Zach
2026-06-11 10:08:31 -07:00
parent 26fdf74d69
commit 6a31d304d3
8 changed files with 52 additions and 61 deletions
+3 -3
View File
@@ -1883,7 +1883,7 @@ class MeshCoreConnector extends ChangeNotifier {
.connect(
timeout: connectTimeout,
mtu: null,
license: License.free,
license: License.nonprofit,
)
.timeout(
connectTimeout + const Duration(seconds: 2),
@@ -1979,7 +1979,7 @@ class MeshCoreConnector extends ChangeNotifier {
return device.connect(
timeout: connectTimeout,
mtu: null,
license: License.free,
license: License.nonprofit,
);
}
@@ -2088,7 +2088,7 @@ class MeshCoreConnector extends ChangeNotifier {
await device.connect(
timeout: const Duration(seconds: 15),
mtu: null,
license: License.free,
license: License.nonprofit,
);
services = await device.discoverServices();
} else {