万年素人からHackerへの道

万年素人がHackerになれるまで殴り書きするぜ。

  • ・資産運用おすすめ
    10万円は1000円くらい利益
    資産運用ブログ アセマネ
    • ・寄付お願いします
      YENTEN:YYzNPzdsZWqr5THWAdMrKDj7GT8ietDc2W
      BitZenny:ZfpUbVya8MWQkjjGJMjA7P9pPkqaLnwPWH
      c0ban:8KG95GXdEquNpPW8xJAJf7nn5kbimQ5wj1
      Skycoin:KMqcn7x8REwwzMHPi9fV9fbNwdofYAWKRo

    XcodeのValidate失敗

    XcodeのArchive後のValidateの失敗

    Asset validation failedがやたらとある。というか全てか。 Info.plistのせいか?

    Asset validation failed

    Invalid bundle. The "UlInterfaceOrientationPortrait" orientations were provided for the UlSupportedInterfaceOrientations Info.plist key in the com.shinriyo.codemanger bundle, but you need to include all of the "UlInterfaceOrientationPortrait,UlInterfaceOrientationPortraitUpsideDown,UlInterfaceOrientationLandscapeLeft,UlInterfaceOrientationLandscapeRight" orientations to support iPad multitasking. For details, visit: https://developer.apple.com/documentation/bundleresources/information_property_list/uisupportedinterfaceorientations. (ID: e744c934-e892-49da-b1f8-58df2610c9c2)

    このエラーメッセージは、Info.plistファイルにおけるUISupportedInterfaceOrientationsキーの値が無効であることを示しています。これを修正するためには、Info.plistファイルのUISupportedInterfaceOrientationsエントリを適切に設定する必要があります。

    CodeManager/Info.plist の修正 UIInterfaceOrientationPortrait UIInterfaceOrientationLandscapeLeft UIInterfaceOrientationLandscapeRight UIInterfaceOrientationPortraitUpsideDown

    Asset validation failed

    Missing Info.plist value. The Info.plist key 'BGTaskSchedulerPermittedIdentifiers' must contain a list of identifiers used to submit and handle tasks when 'UlBackgroundModes' has a value of 'processing'. For more information, refer to the Information Property List Key Reference at https://developer.apple.com/librarv/ios/documentation/General/Reference/InfoPlistKevReference/

    この対応をした。 https://qiita.com/kokogento/items/caea25337567cb1a267e しかしこれやるとさっき設定したInfo.plistは消えたような・・・

    Asset validation failed

    This bundle is invalid. The value of the CFBundleDocumentTypes key in the Info.plist must be an array of dictionaries, with each dictionary containing at least the CFBundleTypeName key. (ID: 61f5067c-3b7d-4a49-af37-3ac3a27842c0)

    Target選んだ時のInfoタブで解決するらしい。 Xcode上で操作したらいいのかな?