-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAppticsMessaging.podspec
More file actions
40 lines (31 loc) · 1.9 KB
/
AppticsMessaging.podspec
File metadata and controls
40 lines (31 loc) · 1.9 KB
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
Pod::Spec.new do |spec|
spec.name = "AppticsMessaging"
spec.version = "3.3.12003"
spec.summary = "Apptics messaging dependency for Apptics Push notification service"
spec.license = { :type => "Proprietary", :text => <<-LICENSE
Copyright (c) 2025 Zoho Corporation Private Limited
Zoho grants you a limited, revocable, non-exclusive, non-sublicensable license to copy, install and use the Zoho Apptics SDK solely in connection with your use of Zoho Apptics.
You will not:
(i) copy, modify, adapt, translate or otherwise create derivative works of the SDK;
(ii) reverse engineer, decompile, disassemble or otherwise attempt to discover the source code of the SDK;
(iii) rent, sell, assign or otherwise transfer rights in the SDK;
(iv) remove any proprietory notices or licenses from the SDK; or
(v) use, post, publish, transmit or introduce any device, software or routine that interferes or attempts to interfere with the operations SDK.
LICENSE
}
spec.description = <<-DESC
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.
DESC
spec.homepage = "https://github.com/zoho/Apptics"
spec.author = { 'Apptics' => 'apptics-support@zohocorp.com' }
spec.source = { :http => "https://github.com/zoho/Apptics/releases/download/#{spec.version}/AppticsMessaging.zip" }
# spec.source = { :git => "https://github.com/zoho/Apptics.git", :tag=>"#{spec.version}"}
spec.ios.deployment_target = '13.0'
spec.default_subspecs = 'AppticsMessaging'
spec.requires_arc = true
spec.subspec 'AppticsMessaging' do |aps|
aps.platform = :ios, '13.0'
aps.vendored_frameworks = 'AppticsMessaging.xcframework'
aps.ios.dependency 'AppticsAnalytics/Apptics', "#{spec.version}"
end
end