-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathCapgoCapacitorFastSql.podspec
More file actions
28 lines (24 loc) · 864 Bytes
/
CapgoCapacitorFastSql.podspec
File metadata and controls
28 lines (24 loc) · 864 Bytes
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
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = 'CapgoCapacitorFastSql'
s.version = package['version']
s.summary = package['description']
s.license = package['license']
s.homepage = package['repository']['url']
s.author = package['author']
s.source = { :git => package['repository']['url'], :tag => s.version.to_s }
s.ios.deployment_target = '15.0'
s.swift_version = '5.1'
s.default_subspecs = 'Core'
s.subspec 'Core' do |ss|
ss.source_files = 'ios/Sources/**/*.{swift,h,m,c,cc,mm,cpp}'
ss.dependency 'Capacitor'
ss.dependency 'Telegraph', '~> 0.30'
end
# Optional encryption support. Include this subspec to enable SQLCipher.
s.subspec 'SQLCipher' do |ss|
ss.dependency 'CapgoCapacitorFastSql/Core'
ss.dependency 'SQLCipher', '~> 4.10'
end
end