简体   繁体   中英

Continuos Test Flight upload .apk Android apps

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'

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM