Skip to content

Commit 1347e3f

Browse files
committed
published 2.2.3 version
1 parent 301cfe6 commit 1347e3f

File tree

39 files changed

+853
-42
lines changed

39 files changed

+853
-42
lines changed

.DS_Store

0 Bytes
Binary file not shown.

Apptics-SDK.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "Apptics-SDK"
3-
spec.version = "2.2.3001"
3+
spec.version = "2.2.3"
44
spec.summary = "An in-app usage tracking and analytics library for iOS"
55
spec.license = { :type => "MIT", :text=> <<-LICENSE
66
MIT License

Apptics-SDK/2.2.3/Apptics-SDK.podspec

Lines changed: 68 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,68 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = "Apptics-SDK"
3+
spec.version = "2.2.3"
4+
spec.summary = "An in-app usage tracking and analytics library for iOS"
5+
spec.license = { :type => "MIT", :text=> <<-LICENSE
6+
MIT License
7+
Copyright (c) 2020 Zoho Corporation
8+
Permission is hereby granted, free of charge, to any person obtaining a copy
9+
of this software and associated documentation files (the "Software"), to deal
10+
in the Software without restriction, including without limitation the rights
11+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
copies of the Software, and to permit persons to whom the Software is
13+
furnished to do so, subject to the following conditions:
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
SOFTWARE
23+
LICENSE
24+
}
25+
26+
spec.description = <<-DESC
27+
28+
Apptics is a library that enables your app to send in-app usage reports and data securly to our servers. You can track Sessions, Screens, and we also offer Crash Reporting. With minimal initialization of the framework, you get these features without doing any other configuration.
29+
30+
DESC
31+
32+
spec.homepage = "https://github.com/zoho/Apptics"
33+
spec.author = { 'Apptics' => 'apptics-support@zohocorp.com' }
34+
spec.source = { :http => "https://github.com/zoho/Apptics/releases/download/#{spec.version}/HelperScripts.zip" }
35+
# spec.source = { :git => "https://github.com/zoho/Apptics.git", :tag=>"#{spec.version}"}
36+
spec.social_media_url = "http://zoho.com"
37+
38+
spec.ios.deployment_target = '9.1'
39+
spec.tvos.deployment_target = '9.0'
40+
spec.osx.deployment_target = '10.10'
41+
spec.watchos.deployment_target = '2.0'
42+
43+
spec.default_subspecs = 'AnalyticsWithKSCrash'
44+
45+
spec.requires_arc = true
46+
47+
spec.subspec 'Analytics' do |an|
48+
an.dependency 'Apptics-SDK/Scripts'
49+
an.dependency 'AppticsAnalytics/CoreWithMXCrash', "#{spec.version}"
50+
end
51+
52+
spec.subspec 'AnalyticsWithKSCrash' do |an|
53+
an.dependency 'Apptics-SDK/Scripts'
54+
an.dependency 'AppticsAnalytics/CoreWithKSCrash', "#{spec.version}"
55+
end
56+
57+
#spec.subspec 'Scripts' do |sc|
58+
#sc.source_files = 'scripts/*'
59+
#sc.preserve_paths = 'scripts/*'
60+
#end
61+
62+
spec.subspec 'Scripts' do |sc|
63+
sc.source_files = 'scripts/*.{rb,sh}'
64+
sc.preserve_paths = 'scripts/*'
65+
sc.resources = 'scripts/*.plist'
66+
end
67+
68+
end

Apptics-Swift.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Pod::Spec.new do |spec|
1111

1212
spec.name = "Apptics-Swift"
1313
spec.module_name = "Apptics_Swift"
14-
spec.version = "2.2.3001"
14+
spec.version = "2.2.3"
1515
spec.summary = "An in-app usage tracking and analytics library for iOS"
1616
spec.license = { :type => "MIT", :text=> <<-LICENSE
1717
MIT License
Lines changed: 76 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
1+
#
2+
# Be sure to run `pod lib lint Apptics_Swift.podspec' to ensure this is a
3+
# valid spec and remove all comments before submitting the spec.
4+
#
5+
# Any lines starting with a # are optional, but encouraged
6+
#
7+
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
8+
#
9+
10+
Pod::Spec.new do |spec|
11+
12+
spec.name = "Apptics-Swift"
13+
spec.module_name = "Apptics_Swift"
14+
spec.version = "2.2.3"
15+
spec.summary = "An in-app usage tracking and analytics library for iOS"
16+
spec.license = { :type => "MIT", :text=> <<-LICENSE
17+
MIT License
18+
Copyright (c) 2018 Zoho Corporation Pvt. Ltd
19+
Permission is hereby granted, free of charge, to any person obtaining a copy
20+
of this software and associated documentation files (the "Software"), to deal
21+
in the Software without restriction, including without limitation the rights
22+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
23+
copies of the Software, and to permit persons to whom the Software is
24+
furnished to do so, subject to the following conditions:
25+
The above copyright notice and this permission notice shall be included in all
26+
copies or substantial portions of the Software.
27+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
30+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
31+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
32+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33+
SOFTWARE
34+
LICENSE
35+
}
36+
37+
spec.description = <<-DESC
38+
39+
Apptics is a library that enables your app to send in-app usage reports and data securly to our servers. You can track Sessions, Screens, and we also offer Crash Reporting. With minimal initialization of the framework, you get these features without doing any other configuration.
40+
41+
DESC
42+
spec.homepage = "https://github.com/zoho/Apptics"
43+
spec.author = { 'Apptics' => 'apptics-support@zohocorp.com' }
44+
spec.social_media_url = 'https://twitter.com/zoho'
45+
spec.source = { :http => "https://github.com/zoho/Apptics/releases/download/#{spec.version}/AppticsSwiftFiles.zip" }
46+
# spec.source = { :git => "https://github.com/zoho/Apptics.git", :tag=>"#{spec.version}"}
47+
spec.requires_arc = true
48+
spec.swift_version = '5.0'
49+
50+
spec.ios.frameworks = 'UIKit','StoreKit'
51+
52+
spec.ios.deployment_target = '9.1'
53+
spec.tvos.deployment_target = '9.0'
54+
spec.osx.deployment_target = '10.10'
55+
spec.watchos.deployment_target = '2.0'
56+
57+
spec.default_subspecs = 'AnalyticsWithKSCrash'
58+
59+
#spec.dependency 'Apptics-SDK', "#{spec.version}"
60+
61+
spec.subspec 'Analytics' do |co|
62+
co.source_files = 'SwiftFiles/Analytics/*.swift'
63+
#co.resources = 'SwiftFiles/AppticsSwift/*.{xcprivacy}'
64+
co.resource_bundles = {'Analytics' => ['SwiftFiles/AppticsSwift/*.{xcprivacy}']}
65+
co.dependency 'Apptics-SDK/Analytics', "#{spec.version}"
66+
end
67+
68+
spec.subspec 'AnalyticsWithKSCrash' do |ak|
69+
ak.source_files = 'SwiftFiles/Analytics/*.swift'
70+
#ak.resources = 'SwiftFiles/AppticsSwift/*.{xcprivacy}'
71+
ak.resource_bundles = {'AnalyticsWithKSCrash' => ['SwiftFiles/AppticsSwift/*.{xcprivacy}']}
72+
ak.dependency 'Apptics-SDK/AnalyticsWithKSCrash', "#{spec.version}"
73+
end
74+
75+
end
76+

AppticsAnalytics.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "AppticsAnalytics"
3-
spec.version = "2.2.3001"
3+
spec.version = "2.2.3"
44
spec.summary = "Apptics iOS SDK"
55
spec.license = { :type => "MIT", :text=> <<-LICENSE
66
MIT License
Lines changed: 96 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,96 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = "AppticsAnalytics"
3+
spec.version = "2.2.3"
4+
spec.summary = "Apptics iOS SDK"
5+
spec.license = { :type => "MIT", :text=> <<-LICENSE
6+
MIT License
7+
Copyright (c) 2020 Zoho Corporation
8+
Permission is hereby granted, free of charge, to any person obtaining a copy
9+
of this software and associated documentation files (the "Software"), to deal
10+
in the Software without restriction, including without limitation the rights
11+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
copies of the Software, and to permit persons to whom the Software is
13+
furnished to do so, subject to the following conditions:
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
SOFTWARE
23+
LICENSE
24+
}
25+
26+
spec.description = <<-DESC
27+
28+
Apptics is a library that enables your app to send in-app usage reports and data securly to our servers. You can track Sessions, Screens, and we also offer Crash Reporting. With minimal initialization of the framework, you get these features without doing any other configuration.
29+
30+
DESC
31+
32+
spec.homepage = "https://github.com/zoho/Apptics"
33+
spec.author = { 'Apptics' => 'apptics-support@zohocorp.com' }
34+
spec.source = { :http => "https://github.com/zoho/Apptics/releases/download/#{spec.version}/Apptics.zip"}
35+
# spec.source = { :git => "https://github.com/zoho/Apptics.git", :tag=>"#{spec.version}"}
36+
37+
spec.social_media_url = "http://zoho.com"
38+
spec.documentation_url = "https://prezoho.zohocorp.com/apptics/resources/SDK/iOS/integration.html"
39+
40+
spec.ios.deployment_target = '9.1'
41+
spec.tvos.deployment_target = '9.0'
42+
spec.osx.deployment_target = '10.10'
43+
spec.watchos.deployment_target = '2.0'
44+
#spec.default_subspecs = 'CoreWithMXCrash'
45+
46+
spec.requires_arc = true
47+
48+
spec.subspec 'CoreWithMXCrash' do |an|
49+
an.dependency 'AppticsAnalytics/Apptics'
50+
an.dependency 'AppticsAnalytics/EventTracker'
51+
an.dependency 'AppticsAnalytics/ScreenTracker'
52+
an.ios.dependency 'AppticsAnalytics/MXCrashKit'
53+
an.osx.dependency 'AppticsAnalytics/CrashKit'
54+
an.tvos.dependency 'AppticsAnalytics/CrashKit'
55+
an.watchos.dependency 'AppticsAnalytics/CrashKit'
56+
end
57+
58+
spec.subspec 'CoreWithKSCrash' do |ak|
59+
ak.dependency 'AppticsAnalytics/Apptics'
60+
ak.dependency 'AppticsAnalytics/EventTracker'
61+
ak.dependency 'AppticsAnalytics/ScreenTracker'
62+
ak.dependency 'AppticsAnalytics/CrashKit'
63+
end
64+
65+
spec.subspec 'JWT' do |jwt|
66+
jwt.vendored_frameworks = 'Apptics/JWT.xcframework'
67+
end
68+
69+
spec.subspec 'Apptics' do |ap|
70+
ap.vendored_frameworks = 'Apptics/Apptics.xcframework'
71+
ap.dependency 'AppticsAnalytics/JWT'
72+
end
73+
74+
spec.subspec 'EventTracker' do |et|
75+
et.vendored_frameworks = 'Apptics/AppticsEventTracker.xcframework'
76+
end
77+
78+
spec.subspec 'ScreenTracker' do |st|
79+
st.vendored_frameworks = 'Apptics/AppticsScreenTracker.xcframework'
80+
end
81+
82+
spec.subspec 'KSCrash' do |ks|
83+
ks.vendored_frameworks = 'Apptics/KSCrash.xcframework'
84+
end
85+
86+
spec.subspec 'CrashKit' do |ck|
87+
ck.vendored_frameworks = 'Apptics/AppticsCrashKit.xcframework'
88+
ck.dependency 'AppticsAnalytics/KSCrash'
89+
end
90+
91+
spec.subspec 'MXCrashKit' do |mx|
92+
mx.platform = :ios
93+
mx.vendored_frameworks = 'Apptics/AppticsMXCrashKit.xcframework'
94+
end
95+
96+
end

AppticsApiTracker.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "AppticsApiTracker"
3-
spec.version = "2.2.3001"
3+
spec.version = "2.2.3"
44
spec.summary = "Apptics Remote Config for iOS"
55
spec.license = { :type => "MIT", :text=> <<-LICENSE
66
MIT License
Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = "AppticsApiTracker"
3+
spec.version = "2.2.3"
4+
spec.summary = "Apptics Remote Config for iOS"
5+
spec.license = { :type => "MIT", :text=> <<-LICENSE
6+
MIT License
7+
Copyright (c) 2020 Zoho Corporation
8+
Permission is hereby granted, free of charge, to any person obtaining a copy
9+
of this software and associated documentation files (the "Software"), to deal
10+
in the Software without restriction, including without limitation the rights
11+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
copies of the Software, and to permit persons to whom the Software is
13+
furnished to do so, subject to the following conditions:
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
SOFTWARE
23+
LICENSE
24+
}
25+
26+
spec.description = <<-DESC
27+
28+
Apptics is a library that enables your app to send in-app usage reports and data securly to our servers. You can track Sessions, Screens, and we also offer Crash Reporting. With minimal initialization of the framework, you get these features without doing any other configuration.
29+
30+
DESC
31+
32+
spec.homepage = "https://github.com/zoho/Apptics"
33+
spec.author = { 'Apptics' => 'apptics-support@zohocorp.com' }
34+
spec.source = { :http => "https://github.com/zoho/Apptics/releases/download/#{spec.version}/AppticsApiTracker.zip" }
35+
# spec.source = { :git => "https://github.com/zoho/Apptics.git", :tag=>"#{spec.version}"}
36+
37+
spec.ios.deployment_target = '9.1'
38+
spec.tvos.deployment_target = '9.0'
39+
spec.osx.deployment_target = '10.10'
40+
41+
spec.default_subspecs = 'ApiTracker'
42+
43+
spec.requires_arc = true
44+
45+
spec.subspec 'ApiTracker' do |at|
46+
at.vendored_frameworks = 'AppticsApiTracker.xcframework'
47+
at.ios.dependency 'AppticsAnalytics/Apptics', "#{spec.version}"
48+
at.tvos.dependency 'AppticsAnalytics/Apptics', "#{spec.version}"
49+
at.osx.dependency 'AppticsAnalytics/Apptics', "#{spec.version}"
50+
end
51+
52+
end

AppticsCrossPromotion.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |spec|
22
spec.name = "AppticsCrossPromotion"
3-
spec.version = "2.2.3001"
3+
spec.version = "2.2.3"
44
spec.summary = "Apptics Remote Config for iOS"
55
spec.license = { :type => "MIT", :text=> <<-LICENSE
66
MIT License
Lines changed: 51 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
Pod::Spec.new do |spec|
2+
spec.name = "AppticsCrossPromotion"
3+
spec.version = "2.2.3"
4+
spec.summary = "Apptics Remote Config for iOS"
5+
spec.license = { :type => "MIT", :text=> <<-LICENSE
6+
MIT License
7+
Copyright (c) 2020 Zoho Corporation
8+
Permission is hereby granted, free of charge, to any person obtaining a copy
9+
of this software and associated documentation files (the "Software"), to deal
10+
in the Software without restriction, including without limitation the rights
11+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
12+
copies of the Software, and to permit persons to whom the Software is
13+
furnished to do so, subject to the following conditions:
14+
The above copyright notice and this permission notice shall be included in all
15+
copies or substantial portions of the Software.
16+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
22+
SOFTWARE
23+
LICENSE
24+
}
25+
26+
spec.description = <<-DESC
27+
28+
Apptics is a library that enables your app to send in-app usage reports and data securly to our servers. You can track Sessions, Screens, and we also offer Crash Reporting. With minimal initialization of the framework, you get these features without doing any other configuration.
29+
30+
DESC
31+
32+
spec.homepage = "https://github.com/zoho/Apptics"
33+
spec.author = { 'Apptics' => 'apptics-support@zohocorp.com' }
34+
spec.source = { :http => "https://github.com/zoho/Apptics/releases/download/#{spec.version}/AppticsSwiftFiles.zip" }
35+
# spec.source = { :git => "https://github.com/zoho/Apptics.git", :tag=>"#{spec.version}"}
36+
spec.swift_version = '5.0'
37+
spec.ios.deployment_target = '9.1'
38+
39+
spec.default_subspecs = 'CrossPromotion'
40+
41+
spec.requires_arc = true
42+
43+
spec.subspec 'CrossPromotion' do |cp|
44+
cp.source_files = 'SwiftFiles/CrossPromoApps/*.swift'
45+
cp.dependency 'AppticsAnalytics/Apptics', "#{spec.version}"
46+
cp.resource_bundles = {'Apptics_SwiftResources' => ["SwiftFiles/CrossPromoApps/Fonts/*.{ttf}", "SwiftFiles/CrossPromoApps/ios-xibs/*.{xib}", "SwiftFiles/CrossPromoApps/StringFiles/*.{lproj}","SwiftFiles/CrossPromoApps/*.{xcprivacy}"]}
47+
cp.platform = :ios, 9.1
48+
49+
end
50+
51+
end

AppticsExtension.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Pod::Spec.new do |spec|
1111

1212
spec.name = "AppticsExtension"
1313
spec.module_name = "AppticsExtension"
14-
spec.version = "2.2.3001"
14+
spec.version = "2.2.3"
1515
spec.summary = "An in-app usage tracking and analytics library for iOS app extensions"
1616
spec.license = { :type => "MIT", :text=> <<-LICENSE
1717
MIT License

0 commit comments

Comments
 (0)