Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

修复新系统bug #353

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
24 changes: 20 additions & 4 deletions Podfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,26 @@
platform:ios, '8.0'
platform:ios, '12.0'
target ‘YBImageBrowserDemo’ do
use_frameworks!


pod 'SDWebImage', '>= 5.0.0'
pod 'YYImage'
#pod 'YYImage/WebP'
pod 'SDWebImage', '5.18.5'
pod 'SDWebImageWebPCoder'
#pod 'SDWebImage/WebP'
# 兼容新系统的问题
pod 'YYImage', :git => 'https://github.com/QiuYeHong90/YYImage.git'
pod 'YYImage/WebP', :git => 'https://github.com/QiuYeHong90/YYImage.git'
pod 'LookinServer', :configurations => ['Debug']

end
# 兼容m1 电脑模拟器
post_install do |pi|
pi.pods_project.targets.each do |t|
t.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '12.0'
end
end
pi.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
config.build_settings['CODE_SIGN_IDENTITY'] = ''
end
end
59 changes: 48 additions & 11 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,24 +1,61 @@
PODS:
- SDWebImage (5.1.0):
- SDWebImage/Core (= 5.1.0)
- SDWebImage/Core (5.1.0)
- libwebp (1.3.2):
- libwebp/demux (= 1.3.2)
- libwebp/mux (= 1.3.2)
- libwebp/sharpyuv (= 1.3.2)
- libwebp/webp (= 1.3.2)
- libwebp/demux (1.3.2):
- libwebp/webp
- libwebp/mux (1.3.2):
- libwebp/demux
- libwebp/sharpyuv (1.3.2)
- libwebp/webp (1.3.2):
- libwebp/sharpyuv
- LookinServer (1.2.4):
- LookinServer/Core (= 1.2.4)
- LookinServer/Core (1.2.4)
- SDWebImage (5.18.5):
- SDWebImage/Core (= 5.18.5)
- SDWebImage/Core (5.18.5)
- SDWebImageWebPCoder (0.14.2):
- libwebp (~> 1.0)
- SDWebImage/Core (~> 5.17)
- YYImage (1.0.4):
- YYImage/Core (= 1.0.4)
- YYImage/Core (1.0.4)
- YYImage/WebP (1.0.4):
- YYImage/Core

DEPENDENCIES:
- SDWebImage (>= 5.0.0)
- YYImage
- LookinServer
- SDWebImage (= 5.18.5)
- SDWebImageWebPCoder
- YYImage (from `https://github.com/QiuYeHong90/YYImage.git`)
- YYImage/WebP (from `https://github.com/QiuYeHong90/YYImage.git`)

SPEC REPOS:
https://github.com/cocoapods/specs.git:
trunk:
- libwebp
- LookinServer
- SDWebImage
- YYImage
- SDWebImageWebPCoder

EXTERNAL SOURCES:
YYImage:
:git: https://github.com/QiuYeHong90/YYImage.git

CHECKOUT OPTIONS:
YYImage:
:commit: 4164acb76e8979c0612530bd874e099a1fa51e9d
:git: https://github.com/QiuYeHong90/YYImage.git

SPEC CHECKSUMS:
SDWebImage: fb387001955223213dde14bc08c8b73f371f8d8f
YYImage: 1e1b62a9997399593e4b9c4ecfbbabbf1d3f3b54
libwebp: 1786c9f4ff8a279e4dac1e8f385004d5fc253009
LookinServer: 00c7588043ed8e7ab64ce55b9fb747e51371ad06
SDWebImage: 7ac2b7ddc5e8484c79aa90fc4e30b149d6a2c88f
SDWebImageWebPCoder: 633b813fca24f1de5e076bcd7f720c038b23892b
YYImage: 20ec986d18a8d0ad421619d166a9e628097e2433

PODFILE CHECKSUM: 7d28b9ae8c240bc994d951954252612eb02203f4
PODFILE CHECKSUM: 266006ae047391762f269326279cf58203c371c4

COCOAPODS: 1.7.2
COCOAPODS: 1.13.0
65 changes: 65 additions & 0 deletions Pods/Local Podspecs/YYImage.podspec.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

21 changes: 21 additions & 0 deletions Pods/LookinServer/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

66 changes: 66 additions & 0 deletions Pods/LookinServer/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 40 additions & 0 deletions Pods/LookinServer/Src/Base/LookinIvarTrace.h

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

70 changes: 70 additions & 0 deletions Pods/LookinServer/Src/Base/LookinIvarTrace.m

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading