Xcode 16.0 - 'display' is only available in iOS 10.0 or newer
See screenshot.
same issue
Hi,
I am not getting this error. I need more information to reproduce it.
- iOS target version in your own scheme.
- Gifu version
Also can you try with latest Xcode and see if this happens again?
@JING202303 Please refrain from posting private communication without explicit permission from all involved parties.
Hi,
I am not getting this error. I need more information to reproduce it.
- iOS target version in your own scheme.
- Gifu version
Also can you try with latest Xcode and see if this happens again?
HI, --> Xcode 16.1 - tvOS target version: Minimum Deployments: tvOS 14.0 --> Gifu version: 3.3.1 Code: " pod 'Gifu' " ( Installing Gifu (3.3.1) )
Thanks JING
@JING202303 Can you try updating the pod to 3.5.1 which I just pushed and report if you're still seeing the issue?
If it's still there, you can help me by creating a minimal project that reproduces the issue as that speeds up the process quite a bit.
@JING202303 Can you try updating the pod to
3.5.1which I just pushed and report if you're still seeing the issue?If it's still there, you can help me by creating a minimal project that reproduces the issue as that speeds up the process quite a bit.
-----> it is still seeing the issue. Perhaps changing the deployment version could resolve this issue. Points:
spec.ios.deployment_target = "10.0" // change this line spec.tvos.deployment_target = "10.0" // change this line
The version is set to 9.0, which is likely causing this issue.
s.platform = :ios, "9.0" // change this as 10.0 s.platform = :tvos, "9.0" // change this as 10.0
Custom Gifu to my private spec, and running normally.
Pod::Spec.new do |spec|
spec.name = "ULGifu" spec.summary = "Copy from Gifu pod"
spec.description = <<-DESC Copy from Gifu pod(https://github.com/kaishin/Gifu) DESC spec.version = "1.0.1" spec.homepage = "" spec.license = "MIT" spec.author = { "JING202303" => "@gmail.com" } spec.ios.deployment_target = "10.0" // change this line spec.tvos.deployment_target = "10.0" // change this line spec.source = { :git => "****", :branch => "master", :tag => "#{spec.version}" }
spec.swift_version = '5.0' spec.source_files = "ULGifu", "ULGifu/**/*.{swift}"
spec.frameworks = 'UIKit', 'Foundation'
end
@kaishin Can an update fix this issue?
+1
It started happening after I upgraded my react-native project to version 0.79.0.
I am using New Architect and I am using static linkage