-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDLDB.podspec
More file actions
19 lines (19 loc) · 1.48 KB
/
DLDB.podspec
File metadata and controls
19 lines (19 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Pod::Spec.new do |spec|
spec.name = "DLDB"
spec.version = "0.9.8"
spec.summary = "DLDB SDK as ObjC xcframework"
spec.description = <<-DESC
DLDB provides behavioural analytics for mobile applications with privacy by design.
DLDB architecture relies on an SDK to be integrated into a mobile application, and a dashboard https://dashboard.dldb.io/ to build, query and analyze the behaviour of the application users.
For the application, DLDB deploys a distributed database, where each database instance is inside the mobile application scope. All the analytics queries are run by the devices and no raw data ever leaves the devices. Only the statistical KPI-s are sent to the DLDB dashboard.
From the DLDB dashboard, developers, analysts and app owners can build their own queries and analyze the results. No need to have any additional storage or analytics platform: DLDB provides an end-to-end solution.
DLDB SDK is written in C and has bindings to most common languages - works natively on iOS, available as pod DLDB containing objectiveC xcframework.
DESC
spec.homepage = "https://github.com/dldbdev/dldb_sdk_ios"
spec.license = { :type => 'MIT', :file => 'LICENSE' }
spec.author = { "Christophe" => "support@dldb.io" }
spec.platform = :ios, "11.0"
spec.vendored_frameworks = "DLDB_C.xcframework"
spec.ios.libraries = 'c++', 'z'
spec.source = { :git => 'https://github.com/dldbdev/dldb_sdk_ios.git', :tag => "v#{spec.version}" }
end