FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
SDWebImage/SDWebImage.podspec at master · XYCodeTerminator/SDWebImage · GitHub
XYCodeTerminator
/
SDWebImage
Public
forked from
SDWebImage/SDWebImage
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
SDWebImage
/
SDWebImage.podspec
Copy path
More file actions
More file actions
Latest commit
History
History
History
47 lines (41 loc) · 1.88 KB
Breadcrumbs
SDWebImage
/
SDWebImage.podspec
Copy path
File metadata and controls
47 lines (41 loc) · 1.88 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
Pod
::
Spec
.
new
do
|
s
|
s
.
name
=
'SDWebImage'
s
.
version
=
'3.8.1'
s
.
ios
.
deployment_target
=
'7.0'
s
.
tvos
.
deployment_target
=
'9.0'
s
.
license
=
'MIT'
s
.
summary
=
'Asynchronous image downloader with cache support with an UIImageView category.'
s
.
homepage
=
'https://github.com/rs/SDWebImage'
s
.
author
=
{
'Olivier Poitrey'
=>
'rs@dailymotion.com'
}
s
.
source
=
{
:git
=>
'https://github.com/rs/SDWebImage.git'
,
:tag
=>
s
.
version
.
to_s
}
s
.
description
=
'This library provides a category for UIImageView with support for remote '
\
'images coming from the web. It provides an UIImageView category adding web '
\
'image and cache management to the Cocoa Touch framework, an asynchronous '
\
'image downloader, an asynchronous memory + disk image caching with automatic '
\
'cache expiration handling, a guarantee that the same URL won\'t be downloaded '
\
'several times, a guarantee that bogus URLs won\'t be retried again and again, '
\
'and performances!'
s
.
requires_arc
=
true
s
.
framework
=
'ImageIO'
s
.
default_subspec
=
'Core'
s
.
subspec
'Core'
do
|
core
|
core
.
source_files
=
'SDWebImage/{NS,SD,UI}*.{h,m}'
core
.
exclude_files
=
'SDWebImage/UIImage+WebP.{h,m}'
core
.
tvos
.
exclude_files
=
'SDWebImage/MKAnnotationView+WebCache.*'
end
s
.
subspec
'MapKit'
do
|
mk
|
mk
.
ios
.
deployment_target
=
'7.0'
mk
.
source_files
=
'SDWebImage/MKAnnotationView+WebCache.*'
mk
.
framework
=
'MapKit'
mk
.
dependency
'SDWebImage/Core'
end
s
.
subspec
'WebP'
do
|
webp
|
webp
.
source_files
=
'SDWebImage/UIImage+WebP.{h,m}'
webp
.
xcconfig
=
{
'GCC_PREPROCESSOR_DEFINITIONS'
=>
'$(inherited) SD_WEBP=1'
,
'USER_HEADER_SEARCH_PATHS'
=>
'$(inherited) $(SRCROOT)/libwebp/src'
}
webp
.
dependency
'SDWebImage/Core'
webp
.
dependency
'libwebp'
end
end
Back
|
FazBrowse Home
|
New Git URL