Skip to content

Commit ad0465b

Browse files
committed
[BugFix] Fix iOS 3rd party SDK compliance for SDWebImage
Summary of change: Update SDWebImage and SDWebImageWebPCoder to use flexible version constraints (~> 5.19 and ~> 0.14 respectively) instead of pinned versions (5.15.5 and 0.11.0).
1 parent d07be3f commit ad0465b

File tree

2 files changed

+4
-4
lines changed
  • explorer/darwin/ios/lynx_explorer
  • platform/darwin/ios/lynx_service

2 files changed

+4
-4
lines changed

explorer/darwin/ios/lynx_explorer/Podfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@ target 'LynxExplorer' do
5050

5151
pod 'PrimJS', :subspecs => ['quickjs', 'napi']
5252

53-
pod 'SDWebImage','5.15.5'
54-
pod 'SDWebImageWebPCoder', '0.11.0'
53+
pod 'SDWebImage', '~> 5.19'
54+
pod 'SDWebImageWebPCoder', '~> 0.14'
5555

5656
pod 'DebugRouter', '5.0.13'
5757
end

platform/darwin/ios/lynx_service/BUILD.gn

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,11 +68,11 @@ subspec_target("Image") {
6868
dependency = lynx_dependency
6969
dependency += [ [
7070
"SDWebImage",
71-
"5.15.5",
71+
"~> 5.19",
7272
] ]
7373
dependency += [ [
7474
"SDWebImageWebPCoder",
75-
"0.11.0",
75+
"~> 0.14",
7676
] ]
7777
dependency += [ [
7878
"LynxServiceAPI",

0 commit comments

Comments
 (0)