Raj Pawan Gumdal
Raj Pawan Gumdal

Reputation: 7438

Converting Universal app to iPhone only app

I started developing an application in a universal configuration, but later the requirement changed and the application turned out to be iPhone only. Now how do I change the application configuration to fulfill this criterion?

Upvotes: 1

Views: 2356

Answers (4)

A'sa Dickens
A'sa Dickens

Reputation: 2085

If you're using Xcode 6.0

  • Select Project Navigator
  • Select Your Project File
  • Select the General Tab
  • Scroll down to deployment info
  • Select Device drop down and change to Universal to iPhone only

Upvotes: 2

A'sa Dickens
A'sa Dickens

Reputation: 2085

If you're using Xcode 5.0

  • Select Project Navigator
  • Select your project file
  • Make sure your project file is selected and not a target
  • Select the Build Settings tab
  • Scroll Down to deployment section and search through that for "Targeted Device Family" or search that key term in the search field at the top
  • Change iphone/ipad to iphone only

Upvotes: 4

Mudit Bajpai
Mudit Bajpai

Reputation: 3020

see this link,it will help you to solve your problem

“Downgrading” a Universal iPad/iPhone app to iPhone only

Upvotes: 1

Yonathan Jm
Yonathan Jm

Reputation: 442

if u're using xcode 4.2

  • navigate to project navigator
  • select your project
  • selct target > your project's name > summary
  • change the devices from "universal" to "iphone"

Upvotes: 5

Related Questions