FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
SVProgressHUD/SVProgressHUD.podspec at master · SVProgressHUD/SVProgressHUD · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
SVProgressHUD
/
SVProgressHUD
Public
Notifications
You must be signed in to change notification settings
Fork
2.7k
Star
12.4k
Code
Issues
47
Pull requests
38
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
SVProgressHUD
/
SVProgressHUD.podspec
Copy path
More file actions
More file actions
Latest commit
History
History
History
31 lines (26 loc) · 1.41 KB
Breadcrumbs
SVProgressHUD
/
SVProgressHUD.podspec
Copy path
File metadata and controls
31 lines (26 loc) · 1.41 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
Pod
::
Spec
.
new
do
|
s
|
s
.
name
=
'SVProgressHUD'
s
.
version
=
'2.3.1'
s
.
ios
.
deployment_target
=
'12.0'
s
.
tvos
.
deployment_target
=
'12.0'
s
.
license
=
{
:type
=>
'MIT'
,
:file
=>
'LICENSE'
}
s
.
summary
=
'A clean and lightweight progress HUD for your iOS and tvOS app.'
s
.
homepage
=
'https://github.com/SVProgressHUD/SVProgressHUD'
s
.
authors
=
{
'Sam Vermette'
=>
'hello@samvermette.com'
,
'Tobias Totzek'
=>
'tobias@totzek.me'
}
s
.
source
=
{
:git
=>
'https://github.com/SVProgressHUD/SVProgressHUD.git'
,
:tag
=>
s
.
version
.
to_s
}
s
.
description
=
'SVProgressHUD is a clean and easy-to-use HUD meant to display the progress of an ongoing task on iOS and tvOS. The success and error icons are from Freepik from Flaticon and are licensed under Creative Commons BY 3.0.'
s
.
framework
=
'QuartzCore'
s
.
requires_arc
=
true
s
.
default_subspec
=
'Core'
s
.
subspec
'Core'
do
|
core
|
core
.
source_files
=
'SVProgressHUD/*.{h,m}'
core
.
resources
=
[
'SVProgressHUD/SVProgressHUD.bundle'
]
core
.
resource_bundles
=
{
'SVProgressHUD'
=>
[
'SVProgressHUD/PrivacyInfo.xcprivacy'
]
}
end
s
.
subspec
'AppExtension'
do
|
ext
|
ext
.
source_files
=
'SVProgressHUD/*.{h,m}'
ext
.
resources
=
[
'SVProgressHUD/SVProgressHUD.bundle'
]
ext
.
resource_bundles
=
{
'AppExtension'
=>
[
'SVProgressHUD/PrivacyInfo.xcprivacy'
]
}
ext
.
pod_target_xcconfig
=
{
'GCC_PREPROCESSOR_DEFINITIONS'
=>
'SV_APP_EXTENSIONS=1'
}
end
end
Back
|
FazBrowse Home
|
New Git URL