forked from JideGuru/EpubViewerKit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEpubViewerKit.podspec
More file actions
46 lines (40 loc) · 1.26 KB
/
EpubViewerKit.podspec
File metadata and controls
46 lines (40 loc) · 1.26 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
41
42
43
44
45
46
#
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'EpubViewerKit'
s.version = '0.1.3'
s.summary = 'A epub reader flutter plugin project.'
s.description = <<-DESC
An open source epub reader plugin written in swift
DESC
s.homepage = 'https://github.com/JideGuru/EpubViewerKit.git'
s.license = "MIT"
s.author = { 'jideguru' => 'guruliciousjide@gmail.com' }
s.source = { :git => 'https://github.com/JideGuru/EpubViewerKit.git', :tag=>'0.1.2' }
s.swift_version = '4.2'
s.requires_arc = true
s.source_files = [
'Classes/**/*',
'Source/*.{h,swift}',
'Source/**/*.swift',
'Vendor/**/*.swift',
]
s.resources = [
'Source/**/*.{js,css}',
'Source/Resources/*.xcassets',
'Source/Resources/Fonts/**/*.{otf,ttf}'
]
s.public_header_files = [
'Classes/**/*.h',
'Source/*.h',
]
s.libraries = "z"
s.dependency 'SSZipArchive', '2.2.3'
s.dependency 'MenuItemKit', '4.0.1'
s.dependency 'ZFDragableModalTransition', '0.6'
s.dependency 'AEXML', '4.6.0'
s.dependency 'FontBlaster', '5.1.1'
s.dependency 'RealmSwift', '5.5.1'
s.ios.deployment_target = '9.0'
end