Xcodegen: Is it possible to specify provisioning profile?

Created on 9 Sep 2019  路  2Comments  路  Source: yonaskolb/XcodeGen

I can't find any information how to specify provisioning profile in https://github.com/yonaskolb/XcodeGen/blob/master/Docs/ProjectSpec.md

Is it possible at all? If so, could you please point me to the information?

Most helpful comment

Under your target's settings:

    settings:
      base:
        PRODUCT_BUNDLE_IDENTIFIER: com.company.app
        CODE_SIGN_STYLE: Manual
        DEVELOPMENT_TEAM: ABCD1234
      configs:
        Debug:
          CODE_SIGN_IDENTITY: iPhone Developer
          PROVISIONING_PROFILE_SPECIFIER: match Development com.company.app
        Release:
          CODE_SIGN_IDENTITY: iPhone Distribution
          PROVISIONING_PROFILE_SPECIFIER: match AppStore com.company.app

All 2 comments

Under your target's settings:

    settings:
      base:
        PRODUCT_BUNDLE_IDENTIFIER: com.company.app
        CODE_SIGN_STYLE: Manual
        DEVELOPMENT_TEAM: ABCD1234
      configs:
        Debug:
          CODE_SIGN_IDENTITY: iPhone Developer
          PROVISIONING_PROFILE_SPECIFIER: match Development com.company.app
        Release:
          CODE_SIGN_IDENTITY: iPhone Distribution
          PROVISIONING_PROFILE_SPECIFIER: match AppStore com.company.app

Thanks! Works like a charm!

Was this page helpful?
0 / 5 - 0 ratings