Xcodegen: Devices - Deployment info

Created on 7 Dec 2018  路  2Comments  路  Source: yonaskolb/XcodeGen

Is there a way to set the Deployment info Device?

captura de pantalla 2018-12-06 a la s 20 00 47

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

image

BTW, thank you for this awesome tool.

Most helpful comment

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 馃憤

All 2 comments

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 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 馃憤

Worked perfectly. Thank you.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

lukewakeford picture lukewakeford  路  6Comments

AlexisQapa picture AlexisQapa  路  3Comments

ismetanin picture ismetanin  路  3Comments

ImLaufderZeit picture ImLaufderZeit  路  5Comments

yonaskolb picture yonaskolb  路  3Comments