Archives 到 App Store 报错 ERROR ITMS-90149: ERROR ITMS-90087: ERROR ITMS-90023: ERROR ITMS-4238:

来源:互联网 发布:2017双十一交易数据 编辑:程序博客网 时间:2024/06/05 10:27

ERROR ITMS-90149: "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.”

(去查看你的plist文件或者三方的plist,有一个CFBundleDocumentTypes没有设置key - value ,咩用删掉就可以了


ERROR ITMS-90087: "Unsupported Architectures. The executable for xxx.framework contains unsupported architectures '[x86_64, i386]'."

这个SDK里面包含了x86_64,i386 [架构],当然这个AppStore是不允许的,所有会在上传的时候报错,解决办法就是要这个SDK剔掉掉x86_64,i386这两个架构

TARGETS->Build Phases->点击加号选择New Run Script Phase->然后复制粘贴下面代码

APP_PATH="${TARGET_BUILD_DIR}/${WRAPPER_NAME}"  # This script loops through the frameworks embedded in the application and  # removes unused architectures.  find "$APP_PATH" -name '*.framework' -type d | while read -r FRAMEWORK  do  FRAMEWORK_EXECUTABLE_NAME=$(defaults read "$FRAMEWORK/Info.plist" CFBundleExecutable)  FRAMEWORK_EXECUTABLE_PATH="$FRAMEWORK/$FRAMEWORK_EXECUTABLE_NAME"  echo "Executable is $FRAMEWORK_EXECUTABLE_PATH"  EXTRACTED_ARCHS=()  for ARCH in $ARCHS  do  echo "Extracting $ARCH from $FRAMEWORK_EXECUTABLE_NAME"  lipo -extract "$ARCH" "$FRAMEWORK_EXECUTABLE_PATH" -o "$FRAMEWORK_EXECUTABLE_PATH-$ARCH"  EXTRACTED_ARCHS+=("$FRAMEWORK_EXECUTABLE_PATH-$ARCH")  done  echo "Merging extracted architectures: ${ARCHS}"  lipo -o "$FRAMEWORK_EXECUTABLE_PATH-merged" -create "${EXTRACTED_ARCHS[@]}"  rm "${EXTRACTED_ARCHS[@]}"  echo "Replacing original executable with thinned version"  rm "$FRAMEWORK_EXECUTABLE_PATH"  mv "$FRAMEWORK_EXECUTABLE_PATH-merged" "$FRAMEWORK_EXECUTABLE_PATH"  done




ERROR ITMS-90023: "Missing required icon file. The bundle does not contain an app icon for iPad of exactly '167x167' pixels, in .png format 

(上面也说了APP icon,那就是你的APPicon没有配置好,选择了iPad的也要配置完整)


ERROR ITMS-4238: "Redundant Binary Upload. There already exists a binary upload with build version '1' for train '1.0'" at SoftwareAssets/PreReleaseSoftwareAsset

苹果更新了itunes之后,现在重新submit二进制会出现重复提交的错误。

改了build版本号之后再提交可以了,version是不变的。

然后重新去iTunes Connect中选择build。 选择对应版本。

可能刚刚上传成功后, iTunes Connect不会立马同步, 没有显示刚上传的版本。 等几分钟就好了。








原创粉丝点击