-
Notifications
You must be signed in to change notification settings - Fork 51
/
Copy pathSwiftDraw.podspec.json
39 lines (39 loc) · 1016 Bytes
/
SwiftDraw.podspec.json
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
{
"name": "SwiftDraw",
"version": "0.18.1",
"summary": "A Swift library that adds support for SVG files to UIImage and NSImage.",
"homepage": "https://github.com/swhitty/SwiftDraw",
"authors": "Simon Whitty",
"license": {
"type": "zlib",
"file": "LICENSE.txt"
},
"source": {
"git": "https://github.com/swhitty/SwiftDraw.git",
"tag": "0.18.1"
},
"platforms": {
"ios": "13.0",
"osx": "10.15",
"tvos": "13.0",
"watchos": "6.0"
},
"source_files": "SwiftDraw/**/*.swift",
"ios": {
"exclude_files": "SwiftDraw/NSImage+Image.swift",
"frameworks": ["UIKit", "Foundation"]
},
"osx": {
"exclude_files": "SwiftDraw/UIImage+Image.swift",
"frameworks": ["AppKit", "Foundation"]
},
"tvos": {
"exclude_files": "SwiftDraw/NSImage+Image.swift",
"frameworks": ["UIKit", "Foundation"]
},
"watchos": {
"exclude_files": "SwiftDraw/NSImage+Image.swift",
"frameworks": ["UIKit", "WatchKit", "Foundation"]
},
"swift_version": "5.0"
}