快车道插件应用中心给出 提供app_name:"helloworldtest"格式无效



我在使用fastlane应用中心插件在应用中心上传ipa时遇到问题。当我运行fastlane test_autocreation --verbose时,我会收到以下错误:

提供的app_name:"helloworldtest"的格式无效。请确保app_name中没有特殊字符或空格。

以下是负责执行此操作的通道:

lane :test_autocreation do
appcenter_upload(
api_token: "******",
owner_type: "organization",
owner_name: "*****",
app_os: "ios",
app_name: "helloworldtest",
ipa: "./build_Dev/helloworldtest.ipa",
destinations: "*"
)
end

我可能错过了什么吗?

错误消息可能措辞不当(我的错!),因为这可能也是由于组织名称的问题。请使用应用中心URL中的组织名称。例如,对于组织"JP org"中的测试应用程序,我必须使用owner_name: "JP-Org":

https://appcenter.ms/orgs/JP-Org/apps/TestOrgApp

我希望这能有所帮助。如果问题仍然存在,请在GitHub上打开一个Issue。

相关内容

最新更新