Nich
Nich

Reputation: 1102

Rubymotion App in different ios

Have an rubymotion IOS app in Appstore but when device with lower version than ios 7, the app can't be installed and said it require at least ios 7. Is the problem is come from rubymotion configuration or any where else?

Someone can point me out?

Thanks...

Here is the solution:

app.deployment_target = '6.1'

This will make you ios app available on ios 6.1 and above.

Upvotes: 2

Views: 283

Answers (1)

chancyWu
chancyWu

Reputation: 14383

Your APP's Deployment Target maybe is 7.0. then it's not available in lower version.

You can check your Deployment Target in General tab of the target setting in your project.

Upvotes: 1

Related Questions