-
Notifications
You must be signed in to change notification settings - Fork 229
Expand file tree
/
Copy pathfu.podspec
More file actions
17 lines (17 loc) · 840 Bytes
/
fu.podspec
File metadata and controls
17 lines (17 loc) · 840 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
Pod::Spec.new do |spec|
spec.name = "fuLib"
spec.version = "1.0"
spec.summary = "Agora iOS video SDK"
spec.description = "iOS library for agora A/V communication, broadcasting and data channel service."
spec.homepage = "https://docs.agora.io/en/Agora%20Platform/downloads"
spec.license = { "type" => "Copyright", "text" => "Copyright 2018 agora.io. All rights reserved.\n"}
spec.author = { "Agora Lab" => "developer@agora.io" }
spec.platform = :ios
spec.source = { :git => "" }
# spec.vendored_frameworks = "FULib/FURenderKit.framework"
spec.resource_bundles = {"FURenderKit" => "FULib/Resources/*"}
spec.source_files = "FULib/*.h"
spec.requires_arc = true
spec.ios.deployment_target = '9.0'
spec.dependency 'FURenderKit', '8.7.0'
end