Skip to content
This repository was archived by the owner on Aug 3, 2022. It is now read-only.

Commit 226cca3

Browse files
authored
Merge pull request #13 from SDWebImage/xcode11
Bumped the min deployment target to iOS 9+, Xcode to Xcode 11
2 parents 68f6054 + a98186d commit 226cca3

File tree

5 files changed

+8
-10
lines changed

5 files changed

+8
-10
lines changed

Diff for: Cartfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
github "SDWebImage/SDWebImage" ~> 5.6
1+
github "SDWebImage/SDWebImage" ~> 5.10
22
github "Flipboard/FLAnimatedImage" >= 1.0.11

Diff for: Example/Podfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
use_frameworks!
22
inhibit_all_warnings!
3-
platform :ios, '8.0'
3+
platform :ios, '9.0'
44
install! 'cocoapods', :share_schemes_for_development_pods => ['SDWebImageFLPlugin']
55

66
target 'SDWebImageFLPlugin_Example' do

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,8 @@ imageView.sd_setImage(with: URL(string: "http://www.domain.com/path/to/image.gif
5959

6060
## Requirements
6161

62-
+ iOS 8+
63-
+ Xcode 9+
62+
+ iOS 9+
63+
+ Xcode 11+
6464

6565
## Installation
6666

Diff for: SDWebImageFLPlugin.podspec

+2-2
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ This project adds a plugin for FLAnimatedImage into SDWebImage, for loading anim
2020
s.author = { 'DreamPiggy' => '[email protected]' }
2121
s.source = { :git => 'https://github.com/SDWebImage/SDWebImageFLPlugin.git', :tag => s.version.to_s }
2222

23-
s.ios.deployment_target = '8.0'
23+
s.ios.deployment_target = '9.0'
2424

2525
s.source_files = 'SDWebImageFLPlugin/Classes/**/*', 'SDWebImageFLPlugin/Module/SDWebImageFLPlugin.h'
2626
s.module_map = 'SDWebImageFLPlugin/Module/SDWebImageFLPlugin.modulemap'
2727

28-
s.dependency 'SDWebImage/Core', '~> 5.6'
28+
s.dependency 'SDWebImage/Core', '~> 5.10'
2929
s.dependency 'FLAnimatedImage', '>= 1.0.11'
3030
end

Diff for: SDWebImageFLPlugin.xcodeproj/project.pbxproj

+2-4
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@
228228
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
229229
GCC_WARN_UNUSED_FUNCTION = YES;
230230
GCC_WARN_UNUSED_VARIABLE = YES;
231-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
231+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
232232
MTL_ENABLE_DEBUG_INFO = YES;
233233
ONLY_ACTIVE_ARCH = YES;
234234
SDKROOT = iphoneos;
@@ -283,7 +283,7 @@
283283
GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE;
284284
GCC_WARN_UNUSED_FUNCTION = YES;
285285
GCC_WARN_UNUSED_VARIABLE = YES;
286-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
286+
IPHONEOS_DEPLOYMENT_TARGET = 9.0;
287287
MTL_ENABLE_DEBUG_INFO = NO;
288288
SDKROOT = iphoneos;
289289
VALIDATE_PRODUCT = YES;
@@ -307,7 +307,6 @@
307307
);
308308
INFOPLIST_FILE = "$(SRCROOT)/SDWebImageFLPlugin/Module/Info.plist";
309309
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
310-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
311310
LD_RUNPATH_SEARCH_PATHS = (
312311
"$(inherited)",
313312
"@executable_path/Frameworks",
@@ -335,7 +334,6 @@
335334
);
336335
INFOPLIST_FILE = "$(SRCROOT)/SDWebImageFLPlugin/Module/Info.plist";
337336
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
338-
IPHONEOS_DEPLOYMENT_TARGET = 8.0;
339337
LD_RUNPATH_SEARCH_PATHS = (
340338
"$(inherited)",
341339
"@executable_path/Frameworks",

0 commit comments

Comments
 (0)