-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathYM-API.podspec
More file actions
18 lines (18 loc) · 1020 Bytes
/
YM-API.podspec
File metadata and controls
18 lines (18 loc) · 1020 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |spec|
spec.name = "YM-API"
spec.version = "0.7.1"
spec.summary = "Unofficial Yandex Music API"
spec.homepage = "https://github.com/p0rterB/YM-API"
spec.license = { :type => "GNU LGPL v3.0", :file => "LICENSE" }
spec.author = { "Chris" => "chris.nik.70@protonmail.com" }
spec.ios.deployment_target = "10.0"
spec.osx.deployment_target = "10.12"
spec.tvos.deployment_target = "10.0"
spec.watchos.deployment_target = "3.0"
spec.swift_versions = ["5.3", "5.9", "5.10"]
spec.swift_version = "5.3"
spec.source = { :git => "https://github.com/p0rterB/YM-API.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/YMAPI/*.swift", "Sources/YMAPI/**/*.swift"
spec.framework = "Foundation"
spec.resource_bundles = {'YM-API' => ['Sources/YMAPI/PrivacyInfo.xcprivacy']}
end