Is there a way to set the Deployment info Device?

I want my project to be only for iPhone instead of Universal and I couldn't find the documentation about it.

BTW, thank you for this awesome tool.
Hi @VictorUrielPG
This is controlled with the TARGETED_DEVICE_FAMILY setting. For iPhone only you can set it to 1. You can set this for the whole project or just the app:
targets:
MyApp:
settings:
TARGETED_DEVICE_FAMILY: 1
To find things like this out you can change settings in some project that's checked in and see the git diff that it creates.
I'll close this for now. If you have any more questions feel free to ask or create a new issue 馃憤
Hi @VictorUrielPG
This is controlled with theTARGETED_DEVICE_FAMILYsetting. For iPhone only you can set it to 1. You can set this for the whole project or just the app:targets: MyApp: settings: TARGETED_DEVICE_FAMILY: 1To find things like this out you can change settings in some project that's checked in and see the git diff that it creates.
I'll close this for now. If you have any more questions feel free to ask or create a new issue 馃憤
Worked perfectly. Thank you.
Most helpful comment
Hi @VictorUrielPG
This is controlled with the
TARGETED_DEVICE_FAMILYsetting. For iPhone only you can set it to 1. You can set this for the whole project or just the app:To find things like this out you can change settings in some project that's checked in and see the git diff that it creates.
I'll close this for now. If you have any more questions feel free to ask or create a new issue 馃憤