Fastlane 不会向我的内部测试人员发送电子邮件以进行 testflight
Fastlane does not email my internal testers for testflight
我这辈子都找不到将我的应用商店上传到 email/notify 我的测试人员的信息。任何帮助将不胜感激。
这是我的 FastFile 中的内容。
lane :deploytest do
gym(scheme: "Target_AppStore") # Build your app - more options available
# fixes firewall issue
ENV["DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS"] = "-t DAV"
pilot(
#You can also skip the submission of the binary, which means, the ipa file will only be uploaded and not distributed to testers:
skip_submission: false,
)
# sh "your_script.sh"
# You can also use other beta testing services here (run `fastlane actions`)
end
我是个白痴
pilot(
#You can also skip the submission of the binary, which means, the ipa file will only be uploaded and not distributed to testers:
skip_submission: false,
distribute_external: false, #this needed to be added for internal builds
)
我这辈子都找不到将我的应用商店上传到 email/notify 我的测试人员的信息。任何帮助将不胜感激。
这是我的 FastFile 中的内容。
lane :deploytest do
gym(scheme: "Target_AppStore") # Build your app - more options available
# fixes firewall issue
ENV["DELIVER_ITMSTRANSPORTER_ADDITIONAL_UPLOAD_PARAMETERS"] = "-t DAV"
pilot(
#You can also skip the submission of the binary, which means, the ipa file will only be uploaded and not distributed to testers:
skip_submission: false,
)
# sh "your_script.sh"
# You can also use other beta testing services here (run `fastlane actions`)
end
我是个白痴
pilot(
#You can also skip the submission of the binary, which means, the ipa file will only be uploaded and not distributed to testers:
skip_submission: false,
distribute_external: false, #this needed to be added for internal builds
)