tristanhimmelman/AlamofireObjectMapper

[Carthage] Build error

Closed this issue · 3 comments

Dear tristanhimmelman,

  1. Carthage build error
  2. Thank you for your great AlamofireObjectMapper, It is really helpful
  3. We used this, but for this weeks we see that log when run :
    carthage update --platform iOS
  4. Do you know the reason ? Thanks

github "tristanhimmelman/AlamofireObjectMapper" ~> 2.1

Failed to discover shared schemes in project Alamofire.xcodeproj—either the project does not have any shared schemes, or xcodebuild never returned

If you believe this to be a project configuration error, please file an issue with the maintainers at https://github.com/Alamofire/Alamofire/issues/new

  1. Can your guide the way to make AlamofireObjectMapper support :
    Alamofire.upload(.POST, url, headers: self.getHeader(), multipartFormData: { multipartFormData in
    ...

Thanks so much

Can your guide the way to make AlamofireObjectMapper support : Alamofire.upload(.POST, url, headers: self.getHeader(), multipartFormData: { multipartFormData in ...

I found it, sorry for dummy question :

        encodingCompletion: { encodingResult in
            switch encodingResult {
            case .Success(let upload, _, _):
                upload.responseObject { (response: Response<T, NSError>) in
                    processResponse(response, callBack: callBack)
                }

            case .Failure(let encodingError):
                debugPrint(encodingError)
                callBack(false, nil)
            }
        }

Dear tristanhimmelman,
Still have this one, I will check back more later
Carthage build error
Thank you for your great AlamofireObjectMapper, It is really helpful
We used this, but for this weeks we see that log when run : carthage update --platform iOS
Do you know the reason ? Thanks
github "tristanhimmelman/AlamofireObjectMapper" ~> 2.1

Failed to discover shared schemes in project Alamofire.xcodeproj—either the project does not have any shared schemes, or xcodebuild never returned

If you believe this to be a project configuration error, please file an issue with the maintainers at https://github.com/Alamofire/Alamofire/issues/new

I have the same problem