1 下载adk:
https://github.com/aliyun/alicloud-ios-demo/tree/master/httpdns_ios_demo
2 按照安装步骤加入自己的工程 本人选用 Pod
先查找下命令行:pod search AlicloudHTTPDNS
结果:
-> AlicloudHTTPDNS (1.17.3)
Aliyun Mobile Service HTTPDNS iOS SDK.
pod 'AlicloudHTTPDNS', '~> 1.17.3'
- Homepage: https://www.aliyun.com/product/httpdns
- Source:
https://ios-repo.oss-cn-shanghai.aliyuncs.com/httpdns/1.17.3/httpdns.zip
- Versions: 1.17.3, 1.7.3, 1.7.2, 1.7.1, 1.7.0.2, 1.6.20, 1.6.19, 1.6.18,
1.6.17, 1.6.16, 1.6.15, 1.6.14.1, 1.6.14, 1.6.13, 1.6.12, 1.6.10, 1.6.9,
1.6.8, 1.6.7, 1.6.6, 1.5.5, 1.5.4, 1.5.3, 1.5.2, 1.5.1, 1.5.0, 1.4.2, 1.4.1,
1.3.0, 1.2.1, 1.2.0 [aliyun repo]
按照阿里的文档:在podfile添加:
source 'https://github.com/CocoaPods/Specs.git'
source 'https://github.com/aliyun/aliyun-specs.git'
pod 'AlicloudHTTPDNS', '~> 1.17.3' // 我导入的是目前最新的 库,这行更阿里的文档不一样
意外收获:pod 失败了,经过一般检查:cocoapod版本也是最新,而且通过pod search 确认找到AlicloudHTTPDNS,问题是破洞还能失败,懵逼了,在阿里的文档里也没有找到相关的解决问题,
pod错误提示: Unable to find a specification for `AlicloudHTTPDNS`
原因:cocoapods 官方source是隐式的需要的,一旦你指定了其他source 你就需要也把官方的指定
这个时候回在终端输入: pod repo
master
- Type: git (master)
- URL: https://github.com/CocoaPods/Specs.git
- Path: /Users/zt/.cocoapods/repos/master
1 repo
这里没有阿里的源,隐藏pod 失败了, 刚刚添加的podfile文件几条命令删除,
先添加 阿里云的源
在终端输入 pod repo add AliBCSpecs https://github.com/aliyun/aliyun-specs.git
查看:pod repo
aliyun
- Type: git (master)
- URL: https://github.com/aliyun/aliyun-specs.git
- Path: /Users/i-mac/.cocoapods/repos/aliyun
master
- Type: git (master)
- URL: https://github.com/CocoaPods/Specs.git
- Path: /Users/i-mac/.cocoapods/repos/master
2 repos
在podfile 添加
pod 'AlicloudHTTPDNS', '~> 1.17.3'
执行 pod install
这次安装成功了。