持续测试航班上传.apk Android应用

时间:2014-02-03 12:48:43

标签: android testflight

我想知道是否有类似于Android for iOS的解决方案,以便将.apk上传到Test Flight:

Is there any automatic Testflight upload script on application archiving?

因此我们需要使用命令行中的某种脚本上传.apk文件来测试Flight存储库。

非常感谢

1 个答案:

答案 0 :(得分:1)

从TestFlight查看Upload API。 您可以创建某些可以在特定时间执行的批处理脚本。 例如:

curl http://testflightapp.com/api/builds.json 
-F file=@testflightapp.apk
-F api_token='your_api_token' 
-F team_token='your_team_token' 
-F notes='This build was uploaded via the upload API' 
-F notify=True 
-F distribution_lists='Internal, QA'