2016-08-30 1 views
1

저의 삶에 대한 정보를 얻으려면 내 앱 스토어를 이메일로 보내거나 내 테스터에게 알리려면 정보를 찾을 수 없습니다. 어떤 도움이라도 대단히 감사하겠습니다.Fastlane이 testflight의 내부 테스터에게 이메일을 보내지 않습니다.

내 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 

답변

0

나는 바보

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 
) 
에게있어
관련 문제