-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPodfile
More file actions
52 lines (37 loc) · 1.38 KB
/
Podfile
File metadata and controls
52 lines (37 loc) · 1.38 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
47
48
49
50
51
source 'https://github.com/CocoaPods/Specs.git'
# tuya公有源
source 'https://github.com/tuya/tuya-pod-specs.git'
use_modular_headers!
platform :ios, '12.0'
inhibit_all_warnings!
use_frameworks! :linkage => :static
target 'tuya-aivoice-ios-sdk-sample-objc' do
# 安全文件
pod 'ThingSmartCryption', :path => './'
# AI 音频UI业务包
pod 'ThingSmartAIVoiceBizBundle', '~> 6.11.0'
# 小程序UI业务包
pod "ThingSmartMiniAppBizBundle", '~> 6.11.0'
pod 'ThingSmartBaseKitBizBundle', '~> 6.11.0'
pod 'ThingSmartBizKitBizBundle', '~> 6.11.0'
# 设备配网UI业务包-无配网需求可以不加
pod 'ThingSmartActivatorBizBundle', '~> 6.11.0'
# 设备面板UI业务包-无设备控制的需求可以不加
pod 'ThingSmartPanelBizBundle','~> 6.11.0'
# 设备详情UI业务包
pod 'ThingSmartDeviceDetailBizBundle', '~> 6.11.0'
# 家庭UI业务包
pod 'ThingSmartFamilyBizBundle', '~> 6.11.0'
# Optional
# 设备OTA升级UI业务包
# pod 'ThingSmartOTABizBundle', '~> 6.11.0'
end
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['CLANG_WARN_DOCUMENTATION_COMMENTS'] = 'NO'
config.build_settings["IPHONEOS_DEPLOYMENT_TARGET"] = "12.0"
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end
end
end