skip to Main Content

Xcode 13 beta 5 build error.

  • Tried clearing out derived data
  • Clean build
  • Restart
  • Tried available StackOverflow solutions with similar title

Error log

2021-08-16 07:20:46.045 AssetCatalogSimulatorAgent[22021:116352] nil host used in call to allowsSpecificHTTPSCertificateForHost
2021-08-16 07:20:46.046 AssetCatalogSimulatorAgent[22021:116352] nil host used in call to allowsAnyHTTPSCertificateForHost:
2021-08-16 07:20:46.096 AssetCatalogSimulatorAgent[22021:116352] nil host used in call to allowsSpecificHTTPSCertificateForHost
2021-08-16 07:20:46.096 AssetCatalogSimulatorAgent[22021:116352] nil host used in call to allowsAnyHTTPSCertificateForHost:
2021-08-16 07:20:46.121 AssetCatalogSimulatorAgent[22021:116352] nil host used in call to allowsSpecificHTTPSCertificateForHost
2021-08-16 07:20:46.121 AssetCatalogSimulatorAgent[22021:116352] nil host used in call to allowsAnyHTTPSCertificateForHost:
2021-08-16 07:20:46.145 AssetCatalogSimulatorAgent[22021:116352] nil host used in call to allowsSpecificHTTPSCertificateForHost
2021-08-16 07:20:46.145 AssetCatalogSimulatorAgent[22021:116352] nil host used in call to allowsAnyHTTPSCertificateForHost:
2021-08-16 07:20:46.181 AssetCatalogSimulatorAgent[22021:116352] nil host used in call to allowsSpecificHTTPSCertificateForHost
2021-08-16 07:20:46.181 AssetCatalogSimulatorAgent[22021:116352] nil host used in call to allowsAnyHTTPSCertificateForHost:
2021-08-16 07:20:46.206 AssetCatalogSimulatorAgent[22021:116352] nil host used in call to allowsSpecificHTTPSCertificateForHost
2021-08-16 07:20:46.206 AssetCatalogSimulatorAgent[22021:116352] nil host used in call to allowsAnyHTTPSCertificateForHost:
2021-08-16 07:20:46.231 AssetCatalogSimulatorAgent[22021:116352] nil host used in call to allowsSpecificHTTPSCertificateForHost
2021-08-16 07:20:46.231 AssetCatalogSimulatorAgent[22021:116352] nil host used in call to allowsAnyHTTPSCertificateForHost:
2021-08-16 07:20:46.256 AssetCatalogSimulatorAgent[22021:116352] nil host used in call to allowsSpecificHTTPSCertificateForHost
2021-08-16 07:20:46.256 AssetCatalogSimulatorAgent[22021:116352] nil host used in call to allowsAnyHTTPSCertificateForHost:
Command CompileAssetCatalog failed with a nonzero exit code

2

Answers


  1. In my case It was an icon name that didn’t exist (didn’t have the asset), so I corrected the typo.

    enter image description here

    Login or Signup to reply.
  2. For people who come across this in the future, I fixed it by:

    1. Nuking all of /Library/Developer (removing just DerivedData) didn’t seem to be enough.
    2. Restarting my Mac.
    3. Reopening Xcode.
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search