2016-09-27 70 views
1

遷移從雨燕2.3斯威夫特3之後,我發現在編譯的時候這些錯誤:更新Alamofire在podfile錯誤

Analyzing dependencies 

[!] Unable to satisfy the following requirements: 

- `Alamofire (~> 4.0)` required by `Podfile` 
- `Alamofire (~> 4.0)` required by `Podfile` 
- `Alamofire (~> 4.0)` required by `Podfile` 
- `Alamofire (~> 4.0)` required by `Podfile` 
- `Alamofire (~> 4.0)` required by `Podfile` 

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

改變目標:

[!] Oh no, an error occurred. 

Search for existing GitHub issues similar to yours: 
https://github.com/CocoaPods/CocoaPods/search? q=File+exists+%40+dir_s_mkdir+-+%2FUsers%2Fusers%2FMyApp-ios%2FPods%2FTarget+Support+Files%2FAlamofire-iOS10.0&type=Issues 

If none exists, create a ticket, with the template displayed above, on: 

https://github.com/CocoaPods/CocoaPods/issues/new

Be sure to first read the contributing guide for details on how to properly submit a ticket: 
https://github.com/CocoaPods/CocoaPods/blob/master/CONTRIBUTING.md 

Don't forget to anonymize any private data! 

Looking for related issues on cocoapods/cocoapods... 
Found no similar issues. To create a new issue, please visit: 
https://github.com/cocoapods/cocoapods/issues/new 

xcode:

The file 「Alamofire-watchOS.xcconfig」 couldn’t be opened because there is no such file. (/Users/nameusers/MyApp/Pods/Target Support Files/Alamofire-watchOS/Alamofire-watchOS.xcconfig) 

Alamofire-watchOS will not be code signed because its settings don't specify a development team. 

error: unable to read module map contents from 'Target Support  Files/Alamofire-watchOS/Alamofire-watchOS.modulemap': Error Domain=NSCocoaErrorDomain Code=260 "The file 「Alamofire-watchOS.modulemap」 couldn’t be opened because there is no such file." UserInfo={NSFilePath=/Users/nameusers/MyApp/Pods/Target Support Files/Alamofire-watchOS/Alamofire-watchOS.modulemap, NSUnderlyingError=0x7ff89768f8e0 {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory"}} 

error: unable to read module map contents from 'Target Support Files/Alamofire-watchOS/Alamofire-watchOS.modulemap': Error Domain=NSCocoaErrorDomain Code=260 "The file 「Alamofire-watchOS.modulemap」 couldn’t be opened because there is no such file." UserInfo={NSFilePath=/Users/nameusers/MyApp/Pods/Target Support Files/Alamofire-watchOS/Alamofire-watchOS.modulemap, NSUnderlyingError=0x7ff895163940 {Error Domain=NSPOSIXErrorDomain Code=2 "No such file or directory"}} 
+1

您的項目支持較舊的iOS,您需要將部署目標更改爲iOS 9.0+。如果您想使用較舊的版本,請使用較舊的Alamofire。 –

+0

平臺:ios,'10 .0'在POD文件中 – JAck

回答

1

According to theserelated StackOverflow questions,Swift 3似乎只適用於iOS 8和更新版本。

這聽起來像你需要更新你的Podfile(和你自己的應用程序的項目設置)有更高的最低部署目標。例如:

platform :ios, '8.0' 

這意味着您將無法支持更舊版本的iOS。