Phonegap targeting only iPhone (not iPad)?

cordova, iphone

Solution

I know this is old, but the correct answer isn't here; so I'm adding it. I got here with the same problem and below is the solution you're looking for:

In your config.xml:

<preference name="target-device" value="handset" />

Problem

How can I make Phonegap Build to target my app only for iPhone (not iPad)? Is it possible? I'm not using XCode. It's an HTML5/JS app built with Phonegap.

Original source