Hossein Amini
11/12/2024, 11:23 AMHossein Amini
11/13/2024, 8:59 AMxcode_minimum_deployment_target = Gem::Version.new('12.0')
. Before updating XCode the iOS project worked with no issue but by updating the XCode to version 16.0 this line in the Podfile caused issue in release mode.
So to fix it I just changed the version to 15.1 which is equal to the project’s iOS deployment target(xcode_minimum_deployment_target = Gem::Version.new('15.1)
)Ivan Carracedo Asensio
05/07/2025, 10:53 AMxcode_minimum_deployment_target = Gem::Version.new('18.1)??
Also the app target is ios deployment 12 :S
Thanks!!