Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/ios/115.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Ios Fastlane始终返回';字符串不匹配';_Ios_Fastlane - Fatal编程技术网

Ios Fastlane始终返回';字符串不匹配';

Ios Fastlane始终返回';字符串不匹配';,ios,fastlane,Ios,Fastlane,有人能帮忙吗? 通过Fastlane将IOS应用程序部署到AppStore时,“字符串不匹配”始终存在 以下是输出: INFO [2017-09-21 17:03:17.54]: Making sure the latest version on iTunes Connect matches '1.0' from the ipa file... INFO [2017-09-21 17:03:20.00]: '1.0' is the latest version on iTunes Connect

有人能帮忙吗? 通过Fastlane将IOS应用程序部署到AppStore时,“字符串不匹配”始终存在

以下是输出:

INFO [2017-09-21 17:03:17.54]: Making sure the latest version on iTunes Connect matches '1.0' from the ipa file...
INFO [2017-09-21 17:03:20.00]: '1.0' is the latest version on iTunes Connect
INFO [2017-09-21 17:03:22.36]: Loading './fastlane/metadata/en-US/description.txt'...
INFO [2017-09-21 17:03:22.36]: Loading './fastlane/metadata/en-US/keywords.txt'...
INFO [2017-09-21 17:03:22.36]: Loading './fastlane/metadata/en-US/release_notes.txt'...
INFO [2017-09-21 17:03:22.36]: Loading './fastlane/metadata/en-US/support_url.txt'...
WARN [2017-09-21 17:03:22.97]: Lane Context:
INFO [2017-09-21 17:03:22.97]: {:DEFAULT_PLATFORM=>:ios, :PLATFORM_NAME=>:ios, :LANE_NAME=>"ios release", :BUILD_NUMBER=>"7", :IPA_OUTPUT_PATH=>"/Users/me/Desktop/xxx/xxx.ipa", :DSYM_OUTPUT_PATH=>"/Users/me/Desktop/xxx/xxx.app.dSYM.zip", :XCODEBUILD_ARCHIVE=>"/Users/me/Library/Developer/Xcode/Archives/2017-09-21/xxx 2017-09-21 17.02.40.xcarchive"}
**ERROR [2017-09-21 17:03:22.98]: string not matched**
INFO [2017-09-21 17:03:22.98]: Successfully generated documentation at path '/Users/me/Desktop/xxx/fastlane/README.md'

这可能是您自己的脚本中的一个问题,可能是Fastfile中的问题。在Ruby中,当您认为您有一个哈希,但实际上有一个字符串时,就会发生这种情况:

s = "a string"
s["position"] = "an other string"

IndexError: string not matched

这可能是您自己的脚本中的一个问题,可能是Fastfile中的问题。在Ruby中,当您认为您有一个哈希,但实际上有一个字符串时,就会发生这种情况:

s = "a string"
s["position"] = "an other string"

IndexError: string not matched

你解决了这个问题吗?有同样的问题。请参考,它解决了我的问题。你解决了这个问题吗?有相同的问题。请参阅,它解决了我的问题。