Podfile 2.7 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

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 8

platform :ios, '13.0'
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
9 10

target 'HelloUniMPDemo' do
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
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 52 53 54 55 56 57 58 59 60 61
  ## 判断需要引用哪些模块请参考文档: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太多模块容易超时
  pod 'unimp', :git => "https://gitcode.net/dcloud/unimpsdk-ios.git", :subspecs => [
        'Core',
        'Accelerometer',      ##加速度传感器
        'Contacts',           ##通讯录
        'Audio',              ##音频
        'Camera&Gallery',     ##相机&相册
        'File',               ##文件
        'Video',              ##视频播放
        'LivePusher',         ##直播推流
        'NativeJS',           ##JS Reflection call Native
        'Orientation',        ##设备方向
        'Message',            ##邮件消息
        'Zip',                ##压缩
        'Proximity',          ##距离传感器
        'Sqlite',             ##数据库
        'XMLHttpRequest',     ##网络请求
        'Fingerprint',        ##指纹识别
        'FaceId',             ##人脸识别
        'IBeacon',            ##底功耗蓝牙
#        'BlueTooth',          ##蓝牙
#        'Speech-Baidu',       ##语音识别-百度
#        'Statistic-Umeng',    ##友盟统计
#        ##定位模块(百度高德不能同时引用)
#        'Geolocation',        ##系统定位
#        'Geolocation-Gaode',  ##高德定位
#        'Geolocation-Baidu',  ##百度定位
#        ##地图(二选一)
#        'Map-Gaode',          ##高德地图
#        'Map-Baidu',          ##百度地图
#        ##支付
#        'Payment-IAP',        ##苹果内购
#        'Payment-AliPay',     ##支付宝支付
#        'Payment-Wechat',     ##微信支付-同时使用微信分享或登录,必需使用包含支付的依赖库
#        'Payment-Paypal',     ##Paypal支付 iOS13+
#        'Payment-Stripe',     ##stripe支付 iOS13+
#        ##分享
#        'Share-Wechat',       ##微信分享-包含支付
#        'Share-WechatNopay',  ##微信分享-不包含支付
#        'Share-QQ',           ##QQ分享
#        'Share-Sina',         ##新浪微博分享
#        ##登录
#        'Oauth-Apple',        ##苹果登录
#        'Oauth-QQ',           ##QQ登录
#        'Oauth-Wechat',       ##微信登录-包含支付
#        'Oauth-WechatNopay',  ##微信登录-不包含支付
#        'Oauth-Sina',         ##新浪微博登录
#        'Oauth-Google',       ##Google登录
#        'Oauth-Facebook',     ##Facebook登录 iOS12+
  ]
DCloud_iOS_WZT's avatar
DCloud_iOS_WZT 已提交
62 63

end