Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invalid Info.plist value. MinimumOSVersion value is 8.0 #266

Closed
kolisko opened this issue Dec 17, 2014 · 8 comments
Closed

Invalid Info.plist value. MinimumOSVersion value is 8.0 #266

kolisko opened this issue Dec 17, 2014 · 8 comments

Comments

@kolisko
Copy link

kolisko commented Dec 17, 2014

Have no problem to work with Alamofire on ios7. But when trying to Archive project using Xcode6.1 for upload to itunes connect I get following error. Do you know what is wrong? Thank you

alamofire

@mattt
Copy link
Sponsor Contributor

mattt commented Dec 17, 2014

As stated in the README, iOS 7 does not support embedded frameworks.

@EzimetYusup
Copy link

So what is the solution? do you mean that if we use Alamofire , our app can not support ios7 when we submitting to ItunesConnect?

@amirhabibz
Copy link

I have come to the same issue. What's the solution?

@rahulc-phontabulous
Copy link

Check out the source file section in readme.md file if using Alamofire targeting ios7. You can't use embedded frameworks.

On Jan 25, 2015, at 3:07 PM, amirhabibz <notifications@github.commailto:notifications@github.com> wrote:

I have come to the same issue. What's the solution?

Reply to this email directly or view it on GitHubhttps://github.com//issues/266#issuecomment-71398783.

@EzimetYusup
Copy link

delete the embedded frameworks and copy Alamofire.swift file to your project then add struct to the Alamofire.swift like below:

struct Alamofire {
static let manager = Manager.sharedInstance
static let URL = ParameterEncoding.URL
}

and when you use Alamofire API use like this:
Alamofire.manager.request(.GET, url2).responseJSON {(request, response, JSON, error) in ...
this is working for me

@amirhabibz
Copy link

Thank you. I followed the tutorial on github. I deleted the frameworks and
put the source code inside.

On Sun, Jan 25, 2015 at 10:50 PM, EzimetYusup notifications@github.com
wrote:

delete the embedded frameworks and copy Alamofire.swift file to your
project then add struct to the Alamofire.swift like below:

struct Alamofire {
static let manager = Manager.sharedInstance
static let URL = ParameterEncoding.URL
}

this is working for me


Reply to this email directly or view it on GitHub
#266 (comment).

@katopz
Copy link

katopz commented Jun 17, 2015

Hm, I target iOS8 and still get this problem. maybe I miss something here?

@katopz
Copy link

katopz commented Jun 30, 2015

Anyone stuck this like me just remove all framework and let's pod handle the ness, work for me.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

6 participants