문제

I'm wondering if there is some kind of solution like this one for iOS for Android, in order to upload .apk to Test Flight:

Is there any automatic Testflight upload script on application archiving?

So we need to upload .apk files to test Flight repository using some kind of script from command line.

Many thanks

도움이 되었습니까?

해결책

Check out the Upload API from TestFlight. You can create some sort of batch script you can execute at certain times. For example:

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'
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top