This repository was archived by the owner on Feb 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathActorSDK-iOS.podspec
More file actions
46 lines (39 loc) · 1.39 KB
/
ActorSDK-iOS.podspec
File metadata and controls
46 lines (39 loc) · 1.39 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
Pod::Spec.new do |s|
s.name = "ActorSDK-iOS"
s.version = "1.0.336"
s.summary = "Actor SDK for intergration Actor Messaging to your apps"
s.homepage = "https://actor.im/"
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Actor LLC" => "steve@actor.im" }
s.source = { :git => "https://github.com/actorapp/ActorSDK-iOS.git", :tag => "v#{s.version}" }
s.platform = :ios, "8.0"
s.requires_arc = true
s.prepare_command = <<-CMD
Scripts/download.sh
CMD
# Core
s.dependency 'RegexKitLite'
s.dependency 'CocoaAsyncSocket'
s.dependency 'zipzap'
s.dependency 'J2ObjC-Framework'
# UI
s.dependency 'TTTAttributedLabel'
s.dependency 'VBFPopFlatButton'
s.dependency 'JDStatusBarNotification'
s.dependency 'YYImage', '0.9.3'
s.dependency 'YYCategories'
s.dependency 'DZNWebViewController'
s.dependency 'DZNPhotoPickerController'
s.dependency 'SZTextView'
s.dependency 'RSKImageCropper'
s.dependency 'RMUniversalAlert'
s.dependency 'M13ProgressSuite'
s.dependency 'MBProgressHUD'
s.dependency 'libjingle_peerconnection'
s.preserve_paths = 'Frameworks'
s.vendored_framework = 'Frameworks/ActorSDK.framework'
s.xcconfig = {
"SWIFT_INCLUDE_PATHS" => "$(PROJECT_DIR)/ActorSDK-iOS/Frameworks/",
"FRAMEWORK_SEARCH_PATHS" => "$(PROJECT_DIR)/ActorSDK-iOS/Frameworks/"
}
end