如何使用Fastlane触发Beta审查?

时间:2019-06-28 13:28:05

标签: testflight fastlane

这是我的upload_to_testflight(也称为pilot)配置,应该将构建发送给外部测试人员。它确实将内部版本上传到TestFlight,并将内部版本“添加”到一组外部测试人员。但是,它不会触发审核,测试人员也永远不会收到邀请。

    upload_to_testflight(
        beta_app_feedback_email: "redacted",
        beta_app_description: "redacted",
        demo_account_required: true,
        distribute_external: true,
        groups: ["MyGroup"],
        changelog: "MyApp version #{VERSION} build #{BUILD}",
        beta_app_review_info: {
            contact_email: "redacted",
            contact_first_name: "redacted",
            contact_last_name: "redacted",
            contact_phone: "redacted",
            demo_account_name: "redacted",
            demo_account_password: "redacted",
        },
    )

我做错了什么?甚至可以使用Fastlane触发Beta版应用的审核吗?

0 个答案:

没有答案