本文介绍了由于Crittercism的.sh文件无法上传应用程序的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

自最近两年以来,我们一直在使用Crittercism SDK,并且能够成功上传应用程序.由于过去的两天,由于dsym_upload.sh文件,我们无法使用Crittercism上载​​应用程序.

We are using Crittercism SDK since last 2 years and we are successfully able to upload application. Since last 2 days, we are not able to upload application with Crittercism because of dsym_upload.sh file.

任何人都遇到同样的问题... !!!

Anyone getting same issue...!!!

推荐答案

此问题已在CrittercismSDK 5.2.0 CocoaPods规范中得以解决: https://github.com/CocoaPods/Specs/blob/master/Specs/CrittercismSDK/5.2.0/CrittercismSDK.podspec.json

This issue is resolved in CrittercismSDK 5.2.0 CocoaPods spec: https://github.com/CocoaPods/Specs/blob/master/Specs/CrittercismSDK/5.2.0/CrittercismSDK.podspec.json

如果您不想升级到5.2.0,则只需删除文件并从Pods-resources.sh文件中删除这些行

If you don't want to upgrade to 5.2.0, then just delete the fileand remove these lines from the Pods-resources.sh file

if [[" $ CONFIGURATION"==" Debug]];然后 install_resource"CrittercismSDK/CrittercismSDK/dsym_upload.sh"科幻如果[["$ CONFIGURATION" =="Release"]];然后 install_resource"CrittercismSDK/CrittercismSDK/dsym_upload.sh"fi

if [[ "$CONFIGURATION" == "Debug" ]]; then install_resource "CrittercismSDK/CrittercismSDK/dsym_upload.sh"fiif [[ "$CONFIGURATION" == "Release" ]]; then install_resource "CrittercismSDK/CrittercismSDK/dsym_upload.sh"fi

这篇关于由于Crittercism的.sh文件无法上传应用程序的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-02 06:21