-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestLib1.podspec
More file actions
31 lines (16 loc) · 765 Bytes
/
TestLib1.podspec
File metadata and controls
31 lines (16 loc) · 765 Bytes
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 |spec|
spec.name = "TestLib1"
spec.version = "0.1.0"
spec.summary = "testlib1"
spec.description = "My First Package"
spec.homepage = "https://github.com/Harshitha-busetti/TestLib1.git"
#spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = { "Skyflow" => "harshitha.busetti@skyflow.com" }
spec.swift_version = '4.2'
spec.platform = :ios, "12.0"
spec.ios.deployment_target = "12.0"
spec.source = { :git => "https://github.com/Harshitha-busetti/TestLib1.git", :tag => "0.1.0" }
spec.source_files = "Sources/**/*.{swift}"
#spec.resource_bundles = {'Sources' => ['Sources/Resources/**/*.{xcassets}'] }
#spec.dependency "AEXML", "4.6.1"
end