cocoaPods导入环信Hyphenate时出的问题

出现问题

1
2
3
4
5
6
7
Apin-iOS:Apin2017 aipinji$ pod install
Analyzing dependencies
[!] Unable to satisfy the following requirements:

- `Hyphenate (~> 3.3.1)` required by `Podfile`

Specs satisfying the `Hyphenate (~> 3.3.1)` dependency were found, but they required a higher minimum deployment target.

解决方法

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
platform :ios,'8.0'
target "Apin" do
pod 'pop', '~> 1.0'
pod 'Masonry'
pod 'IQKeyboardManager'
pod 'YYModel'
pod 'Bugly', '~> 2.4.2'
pod 'UMengAnalytics-NO-IDFA', '~> 4.1.9'
pod 'MBProgressHUD', '~> 0.9'
pod 'PKRevealController'
pod 'AMap3DMap'
pod 'AMapSearch'
pod 'TZImagePickerController'
pod 'MJRefresh'
pod 'SDWebImage', '~>3.8'
pod 'AFNetworking', '~> 3.1.0'
pod 'WebViewJavascriptBridge', '~> 5.0'
pod 'UMengUShare/UI'
pod 'UMengUShare/Social/Sina'
pod 'UMengUShare/Social/WeChat'
pod 'UMengUShare/Social/QQ'
pod 'SDCycleScrollView','~> 1.64'
pod 'Hyphenate', '~> 3.3.1'
pod 'EaseUI', :git => 'https://github.com/easemob/easeui-ios-hyphenate-cocoapods.git'
end

出现问题

1
2
3
4
5
6
7
8
Apin-iOS:Apin2017 aipinji$ pod install
Analyzing dependencies
Pre-downloading: `EaseUI` from `https://github.com/easemob/easeui-ios-hyphenate-cocoapods.git`
[!] Unable to satisfy the following requirements:

- `MBProgressHUD` required by `Podfile`
- `MBProgressHUD (= 1.0.0)` required by `Podfile.lock`
- `MBProgressHUD (~> 0.9)` required by `MWPhotoBrowser (2.1.1)`

解决方法

1
pod 'MBProgressHUD', '~> 0.9'
------ 本文结束------
0%