-
Notifications
You must be signed in to change notification settings - Fork 3
/
StatusIQ.podspec
50 lines (39 loc) · 2.05 KB
/
StatusIQ.podspec
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
48
49
50
Pod::Spec.new do |s|
# ――― Spec Metadata ―――――――――――――――――――――――――――――――――――――――――――――――――――――――――― #
#
# These will help people to find your library, and whilst it
# can feel like a chore to fill in it's definitely to your advantage. The
# summary should be tweet-length, and the description more in depth.
#
s.name = "StatusIQ"
s.version = "1.0.1"
s.summary = "StatusIQ"
s.homepage = "https://github.com/site24x7/StatusIQ-iOS-SDK.git"
s.description = "description"
s.license = { :type => "Apache", :text=> <<-LICENSE
Apache License
Copyright (c) 2021, ZOHO CORPORATION PRIVATE LIMITED
All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
LICENSE
}
#support email-id - [email protected]
s.author = { "nandhini guru" => "[email protected]" ,"Muralikrishnan" => "[email protected]"}
s.ios.deployment_target = '10.0'
s.frameworks = 'UIKit','Foundation', 'CoreMedia'
s.source_files = ["native/StatusIQFramework/*{swift}"]
s.resources = ["native/StatusIQFramework/*{xcassets,storyboard,xib}"]
#s.exclude_files = ["StatusIQ/StatusIQFramework/*{plist}"]
s.resource_bundles = { 'StatusIQBundle' => ['native/StatusIQFramework/*.{plist,xib,storyboard,xcassets}']}
s.source = { :git => "https://github.com/site24x7/StatusIQ-iOS-SDK.git", :tag => s.version.to_s} # commit ID from Authkey support
s.module_name = 'StatusIQ'
s.requires_arc = true
end