Gifu icon indicating copy to clipboard operation
Gifu copied to clipboard

Xcode 16.0 - 'display' is only available in iOS 10.0 or newer

Open abinhho opened this issue 1 year ago • 8 comments

Screenshot 2024-09-24 at 14 58 04

See screenshot.

abinhho avatar Sep 24 '24 07:09 abinhho

same issue

HisongMo avatar Dec 20 '24 03:12 HisongMo

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?

kaishin avatar Jan 17 '25 18:01 kaishin

@JING202303 Please refrain from posting private communication without explicit permission from all involved parties.

kaishin avatar Jan 17 '25 21:01 kaishin

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 avatar Jan 20 '25 03:01 JING202303

@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.

kaishin avatar Jan 20 '25 20:01 kaishin

@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.

-----> 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


JING202303 avatar Jan 22 '25 10:01 JING202303

@kaishin Can an update fix this issue?

SilenceLove avatar Mar 01 '25 04:03 SilenceLove

+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

ertucaglar avatar Apr 10 '25 09:04 ertucaglar