Skip to content

Commit e56f1f2

Browse files
committed
published version 2.2.6004
1 parent 36e46cf commit e56f1f2

File tree

273 files changed

+1247
-562
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

273 files changed

+1247
-562
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.6003"
3+
spec.version = "2.2.6004"
44
spec.summary = "An in-app usage tracking and analytics library for iOS"
55
spec.license = { :type => "MIT", :text=> <<-LICENSE
66
MIT License
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.6004"
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.6003"
14+
spec.version = "2.2.6004"
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.6004"
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+

Apptics.xcframework/.DS_Store

0 Bytes
Binary file not shown.

Apptics.xcframework/Info.plist

Lines changed: 23 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<array>
77
<dict>
88
<key>LibraryIdentifier</key>
9-
<string>macos-arm64_x86_64</string>
9+
<string>ios-arm64_x86_64-simulator</string>
1010
<key>LibraryPath</key>
1111
<string>Apptics.framework</string>
1212
<key>SupportedArchitectures</key>
@@ -15,11 +15,13 @@
1515
<string>x86_64</string>
1616
</array>
1717
<key>SupportedPlatform</key>
18-
<string>macos</string>
18+
<string>ios</string>
19+
<key>SupportedPlatformVariant</key>
20+
<string>simulator</string>
1921
</dict>
2022
<dict>
2123
<key>LibraryIdentifier</key>
22-
<string>tvos-arm64_x86_64-simulator</string>
24+
<string>macos-arm64_x86_64</string>
2325
<key>LibraryPath</key>
2426
<string>Apptics.framework</string>
2527
<key>SupportedArchitectures</key>
@@ -28,9 +30,7 @@
2830
<string>x86_64</string>
2931
</array>
3032
<key>SupportedPlatform</key>
31-
<string>tvos</string>
32-
<key>SupportedPlatformVariant</key>
33-
<string>simulator</string>
33+
<string>macos</string>
3434
</dict>
3535
<dict>
3636
<key>LibraryIdentifier</key>
@@ -48,19 +48,22 @@
4848
</dict>
4949
<dict>
5050
<key>LibraryIdentifier</key>
51-
<string>tvos-arm64</string>
51+
<string>ios-arm64_x86_64-maccatalyst</string>
5252
<key>LibraryPath</key>
5353
<string>Apptics.framework</string>
5454
<key>SupportedArchitectures</key>
5555
<array>
5656
<string>arm64</string>
57+
<string>x86_64</string>
5758
</array>
5859
<key>SupportedPlatform</key>
59-
<string>tvos</string>
60+
<string>ios</string>
61+
<key>SupportedPlatformVariant</key>
62+
<string>maccatalyst</string>
6063
</dict>
6164
<dict>
6265
<key>LibraryIdentifier</key>
63-
<string>ios-arm64_x86_64-maccatalyst</string>
66+
<string>tvos-arm64_x86_64-simulator</string>
6467
<key>LibraryPath</key>
6568
<string>Apptics.framework</string>
6669
<key>SupportedArchitectures</key>
@@ -69,52 +72,49 @@
6972
<string>x86_64</string>
7073
</array>
7174
<key>SupportedPlatform</key>
72-
<string>ios</string>
75+
<string>tvos</string>
7376
<key>SupportedPlatformVariant</key>
74-
<string>maccatalyst</string>
77+
<string>simulator</string>
7578
</dict>
7679
<dict>
7780
<key>LibraryIdentifier</key>
78-
<string>ios-arm64_x86_64-simulator</string>
81+
<string>ios-arm64</string>
7982
<key>LibraryPath</key>
8083
<string>Apptics.framework</string>
8184
<key>SupportedArchitectures</key>
8285
<array>
8386
<string>arm64</string>
84-
<string>x86_64</string>
8587
</array>
8688
<key>SupportedPlatform</key>
8789
<string>ios</string>
88-
<key>SupportedPlatformVariant</key>
89-
<string>simulator</string>
9090
</dict>
9191
<dict>
9292
<key>LibraryIdentifier</key>
93-
<string>watchos-arm64_i386_x86_64-simulator</string>
93+
<string>tvos-arm64</string>
9494
<key>LibraryPath</key>
9595
<string>Apptics.framework</string>
9696
<key>SupportedArchitectures</key>
9797
<array>
9898
<string>arm64</string>
99-
<string>i386</string>
100-
<string>x86_64</string>
10199
</array>
102100
<key>SupportedPlatform</key>
103-
<string>watchos</string>
104-
<key>SupportedPlatformVariant</key>
105-
<string>simulator</string>
101+
<string>tvos</string>
106102
</dict>
107103
<dict>
108104
<key>LibraryIdentifier</key>
109-
<string>ios-arm64</string>
105+
<string>watchos-arm64_i386_x86_64-simulator</string>
110106
<key>LibraryPath</key>
111107
<string>Apptics.framework</string>
112108
<key>SupportedArchitectures</key>
113109
<array>
114110
<string>arm64</string>
111+
<string>i386</string>
112+
<string>x86_64</string>
115113
</array>
116114
<key>SupportedPlatform</key>
117-
<string>ios</string>
115+
<string>watchos</string>
116+
<key>SupportedPlatformVariant</key>
117+
<string>simulator</string>
118118
</dict>
119119
</array>
120120
<key>CFBundlePackageType</key>
Binary file not shown.

Apptics.xcframework/ios-arm64/Apptics.framework/Headers/APDBManager.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ NS_ASSUME_NONNULL_BEGIN
3737
+ (instancetype)shared;
3838
- (void)setDBDirectory:(NSString*) aDirectory;
3939

40+
- (bool)openTestDatabase;
41+
- (bool)createTestTable;
42+
- (NSMutableSet*)getAllExpectedTables;
43+
- (void)clearTables : (NSArray*) tableList;
44+
4045
- (void)archiveEngagements:(id)queue sessionId : (NSNumber*) sessionId mamId:(NSString * _Nullable)mam anonId : (NSString*) anonid;
4146
- (void)getAllHistoricEngagementDataToBeSyncedWithCompletion:(void (^)(NSMutableArray *results))completion;
4247
- (void)getListOfHistoricEngagementDataToBeSyncedWithCompletion:(void (^)(NSMutableArray *results))completion;
Binary file not shown.
Binary file not shown.

Apptics.xcframework/ios-arm64_x86_64-maccatalyst/Apptics.framework/Versions/A/Headers/APDBManager.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ NS_ASSUME_NONNULL_BEGIN
3737
+ (instancetype)shared;
3838
- (void)setDBDirectory:(NSString*) aDirectory;
3939

40+
- (bool)openTestDatabase;
41+
- (bool)createTestTable;
42+
- (NSMutableSet*)getAllExpectedTables;
43+
- (void)clearTables : (NSArray*) tableList;
44+
4045
- (void)archiveEngagements:(id)queue sessionId : (NSNumber*) sessionId mamId:(NSString * _Nullable)mam anonId : (NSString*) anonid;
4146
- (void)getAllHistoricEngagementDataToBeSyncedWithCompletion:(void (^)(NSMutableArray *results))completion;
4247
- (void)getListOfHistoricEngagementDataToBeSyncedWithCompletion:(void (^)(NSMutableArray *results))completion;

Apptics.xcframework/ios-arm64_x86_64-maccatalyst/Apptics.framework/Versions/A/Resources/AppticsResources.bundle/Contents/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
<string>MacOSX</string>
2222
</array>
2323
<key>CFBundleVersion</key>
24-
<string>2.2.6003</string>
24+
<string>2.2.6004</string>
2525
<key>DTCompiler</key>
2626
<string>com.apple.compilers.llvm.clang.1_0</string>
2727
<key>DTPlatformBuild</key>

Apptics.xcframework/ios-arm64_x86_64-maccatalyst/Apptics.framework/Versions/A/Resources/AppticsResources.bundle/Contents/Resources/sdkProp_info.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
<key>IOS_SDK_ID</key>
88
<string>5775</string>
99
<key>MACOS_SDK_ID</key>
10-
<string>5764</string>
10+
<string>5776</string>
1111
<key>TVOS_SDK_ID</key>
12-
<string>5765</string>
12+
<string>5777</string>
1313
<key>WATCHOS_SDK_ID</key>
14-
<string>5766</string>
14+
<string>5778</string>
1515
</dict>
1616
</plist>

Apptics.xcframework/ios-arm64_x86_64-maccatalyst/Apptics.framework/Versions/A/Resources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<string>MacOSX</string>
2424
</array>
2525
<key>CFBundleVersion</key>
26-
<string>2.2.6003</string>
26+
<string>2.2.6004</string>
2727
<key>DTCompiler</key>
2828
<string>com.apple.compilers.llvm.clang.1_0</string>
2929
<key>DTPlatformBuild</key>

Apptics.xcframework/ios-arm64_x86_64-maccatalyst/Apptics.framework/Versions/A/Resources/sdkProp_info.plist

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
<key>IOS_SDK_ID</key>
88
<string>5775</string>
99
<key>MACOS_SDK_ID</key>
10-
<string>5764</string>
10+
<string>5776</string>
1111
<key>TVOS_SDK_ID</key>
12-
<string>5765</string>
12+
<string>5777</string>
1313
<key>WATCHOS_SDK_ID</key>
14-
<string>5766</string>
14+
<string>5778</string>
1515
</dict>
1616
</plist>
Binary file not shown.

Apptics.xcframework/ios-arm64_x86_64-simulator/Apptics.framework/AppticsResources.bundle/_CodeSignature/CodeResources

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -487,7 +487,7 @@
487487
</dict>
488488
<key>sdkProp_info.plist</key>
489489
<data>
490-
sTFG9jsAgDlsuQ2XQquOybVXwfg=
490+
5fZ++858TQfufb2zDdHL9cxn/6M=
491491
</data>
492492
<key>sl.lproj/ZAnalyticsLocalizable.strings</key>
493493
<dict>
@@ -1446,11 +1446,11 @@
14461446
<dict>
14471447
<key>hash</key>
14481448
<data>
1449-
sTFG9jsAgDlsuQ2XQquOybVXwfg=
1449+
5fZ++858TQfufb2zDdHL9cxn/6M=
14501450
</data>
14511451
<key>hash2</key>
14521452
<data>
1453-
tSE+wB2vfAzdVr8zlZXhF+oFHES087CQO605ug9Tzgw=
1453+
u9EhqIFxHAsOI87WI8faYQhHI3qC+QdBKZq4pjiyYvs=
14541454
</data>
14551455
</dict>
14561456
<key>sl.lproj/ZAnalyticsLocalizable.strings</key>

Apptics.xcframework/ios-arm64_x86_64-simulator/Apptics.framework/Headers/APDBManager.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,11 @@ NS_ASSUME_NONNULL_BEGIN
3737
+ (instancetype)shared;
3838
- (void)setDBDirectory:(NSString*) aDirectory;
3939

40+
- (bool)openTestDatabase;
41+
- (bool)createTestTable;
42+
- (NSMutableSet*)getAllExpectedTables;
43+
- (void)clearTables : (NSArray*) tableList;
44+
4045
- (void)archiveEngagements:(id)queue sessionId : (NSNumber*) sessionId mamId:(NSString * _Nullable)mam anonId : (NSString*) anonid;
4146
- (void)getAllHistoricEngagementDataToBeSyncedWithCompletion:(void (^)(NSMutableArray *results))completion;
4247
- (void)getListOfHistoricEngagementDataToBeSyncedWithCompletion:(void (^)(NSMutableArray *results))completion;
Binary file not shown.

0 commit comments

Comments
 (0)