From 0f2d73239b7c5ec9ee233242ddf28a63530ff167 Mon Sep 17 00:00:00 2001 From: Jonas Bark Date: Wed, 17 Dec 2025 12:57:32 +0100 Subject: [PATCH] fix build --- CHANGELOG.md | 2 +- macos/Podfile | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index de9f3ae..60a95a0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ BikeControl now offers a free trial period of 5 days for all features, so you can test everything before deciding to purchase a license. Please contact the support if you experience any issues! **Features**: -- You will now be notified when connection to your controller is lost +- You will now be notified when a connection to your controller is lost ### 4.1.0 (16-12-2025) diff --git a/macos/Podfile b/macos/Podfile index 0198362..53deee3 100644 --- a/macos/Podfile +++ b/macos/Podfile @@ -38,5 +38,8 @@ end post_install do |installer| installer.pods_project.targets.each do |target| flutter_additional_macos_build_settings(target) + target.build_configurations.each do |config| + config.build_settings['MACOSX_DEPLOYMENT_TARGET'] = '10.15' + end end end