From 490d63b26f7994f533805068ed89cab12ca86750 Mon Sep 17 00:00:00 2001 From: Lior Halphon Date: Sat, 28 Jun 2025 15:44:16 +0300 Subject: [PATCH] Fix build break --- iOS/GBSlider.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iOS/GBSlider.m b/iOS/GBSlider.m index d4a7b2a..7ccfc63 100644 --- a/iOS/GBSlider.m +++ b/iOS/GBSlider.m @@ -3,7 +3,7 @@ #if !__has_include() /* Building with older SDKs */ -API_AVAILABLE(ios(26.0)) +API_AVAILABLE(ios(19.0)) @interface UISliderTrackConfiguration : NSObject @property (nonatomic, readwrite) bool allowsTickValuesOnly; @property (nonatomic, readwrite) float neutralValue; @@ -11,7 +11,7 @@ API_AVAILABLE(ios(26.0)) @end @interface UISlider (configuration) -@property(nonatomic, copy, nullable) UISliderTrackConfiguration *trackConfiguration API_AVAILABLE(ios(26.0)); +@property(nonatomic, copy, nullable) UISliderTrackConfiguration *trackConfiguration API_AVAILABLE(ios(19.0)); @end #endif