Problem
The applause automation team needs the iOS/Android apps uploaded to a specific URL in order to sign them so they can run automated tests on them.
Solution
We need to upload the APK/IPA file like we do to Browserstack in the publish.yml file.
iOS builds [ipa files]
curl -F "file=@/Users/jgarcia/Desktop/Expensify9.1.84.ipa" "https://api.applause.com/v2/builds?name=Expensify_9.84&productId=36005" -H "X-Api-Key: <API_KEY>"
Android builds [apk files]
curl -F "file=@Expensify9.1.84.apk" "https://api.applause.com/v2/builds?name=Expensify_9.84&productId=36008" -H "X-Api-Key: <API_KEY>"
Important!
file=LocationOfTheBuilds
name=NameOfTheBuild without .ipa/apk
Problem
The applause automation team needs the iOS/Android apps uploaded to a specific URL in order to sign them so they can run automated tests on them.
Solution
We need to upload the APK/IPA file like we do to Browserstack in the
publish.ymlfile.iOS builds [ipa files]
curl -F "file=@/Users/jgarcia/Desktop/Expensify9.1.84.ipa" "https://api.applause.com/v2/builds?name=Expensify_9.84&productId=36005" -H "X-Api-Key: <API_KEY>"
Android builds [apk files]
curl -F "file=@Expensify9.1.84.apk" "https://api.applause.com/v2/builds?name=Expensify_9.84&productId=36008" -H "X-Api-Key: <API_KEY>"
Important!
file=LocationOfTheBuilds
name=NameOfTheBuild without .ipa/apk