Podfile 3.2 KB
Newer Older
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
1 2 3 4
# Uncomment the next line to define a global platform for your project

#source 'https://gitee.com/mirrors/CocoaPods-Specs.git'

DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
5
source 'https://github.com/Cocoapods/Specs.git'
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
6
source 'https://gitcode.net/dcloud/unimpsdk-ios.git'
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
7

DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
8 9

target 'HelloUniMPDemo' do
10
  
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
11 12
  ## 判断需要引用哪些模块请参考文档:https://nativesupport.dcloud.net.cn/AppDocs/usemodule/iOSModuleConfig/common.html#%E5%A6%82%E4%BD%95%E9%85%8D%E7%BD%AE%E6%A8%A1%E5%9D%97-%E4%B8%89%E6%96%B9sdk
  ## 根据功能对照表添加,建议一次不要Pod太多模块容易超时
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
13 14
  ## Core、Video、LivePusher、Camera&Gallery、Map-XXX 等模块文件较大建议单独pod install
  ## Payment-Stripe、Payment-Paypal、Oauth-Google、Oauth-Facebook 为海外SDK建议设置代理后pod install
15 16
  
  ##本地引用
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
17
#  pod 'unimp', :path => "../", :subspecs => [
18

DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37
  pod 'unimp', :git => "https://gitcode.net/dcloud/unimpsdk-ios.git", :tag => "3.99", :subspecs => [
        'Core',               ##核心库(必需)
#        'Accelerometer',      ##加速度传感器
#        'Contacts',           ##通讯录
#        'Audio',              ##音频
#        'Camera&Gallery',     ##相机&相册
#        'File',               ##文件
#        'Video',              ##视频播放
#        'LivePusher',         ##直播推流
#        'NativeJS',           ##JS Reflection call Native
#        'Orientation',        ##设备方向
#        'Message',            ##邮件消息
#        'Zip',                ##压缩
#        'Proximity',          ##距离传感器
#        'Sqlite',             ##数据库
#        'XMLHttpRequest',     ##网络请求
#        'Fingerprint',        ##指纹识别
#        'FaceId',             ##人脸识别
#        'IBeacon',            ##底功耗蓝牙
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
38 39 40 41 42 43 44 45 46 47 48 49 50 51
#        'BlueTooth',          ##蓝牙
#        'Speech-Baidu',       ##语音识别-百度
#        'Statistic-Umeng',    ##友盟统计
#        ##定位模块(百度高德不能同时引用)
#        'Geolocation',        ##系统定位
#        'Geolocation-Gaode',  ##高德定位
#        'Geolocation-Baidu',  ##百度定位
#        ##地图(二选一)
#        'Map-Gaode',          ##高德地图
#        'Map-Baidu',          ##百度地图
#        ##支付
#        'Payment-IAP',        ##苹果内购
#        'Payment-AliPay',     ##支付宝支付
#        'Payment-Wechat',     ##微信支付-同时使用微信分享或登录,必需使用包含支付的依赖库
52
#        'Payment-Paypal',     ##Paypal支付 iOS13+
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
53
#        'Payment-Stripe',     ##stripe支付 iOS13+ 依赖库较大如果超时建议使用代理
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
54 55
#        ##分享
#        'Share-Wechat',       ##微信分享-包含支付
56
#        'Share-Wechat-Nopay', ##微信分享-不包含支付
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
57 58 59 60 61 62
#        'Share-QQ',           ##QQ分享
#        'Share-Sina',         ##新浪微博分享
#        ##登录
#        'Oauth-Apple',        ##苹果登录
#        'Oauth-QQ',           ##QQ登录
#        'Oauth-Wechat',       ##微信登录-包含支付
63
#        'Oauth-Wechat-Nopay', ##微信登录-不包含支付
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
64 65
#        'Oauth-Sina',         ##新浪微博登录
#        'Oauth-Google',       ##Google登录
66
#        'Oauth-Facebook',     ##Facebook登录 iOS12+
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
67
  ]
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
68 69

end