Disable re-signing for Enterprise apps
If you upload an iOS app using our REST API, we will re-sign the app with our own provisioning profile to be able to install your app on our devices during test execution.
If your app is already signed using Apple Developer Enterprise Program, you can disable this behaviour to test features such as push notifications on BrowserStack devices. In order to do so, set the browserstack.resignApp
to false in your appium tests :
Capability | Description | Value |
---|---|---|
browserstack.resignApp |
Disable re-signing of Enterprise signed app uploaded on BrowserStack | false |
Example :
desired_caps = {
'browserstack.resignApp': 'false'
}
DesiredCapabilities desiredCapabilities = new DesiredCapabilities();
desiredCapabilities.setCapability("browserstack.resignApp", "false");
desired_cap = {
'browserstack.resignApp': 'false'
}
var capabilities = {
'browserstack.resignApp': 'false'
}
DesiredCapabilities capability = new DesiredCapabilities();
capability.SetCapability("browserstack.resignApp", "false");
$capabilities = new DesiredCapabilities();
$capabilities->setCapability("browserstack.resignApp", "false");
We're sorry to hear that. Please share your feedback so we can do better
Contact our Support team for immediate help while we work on improving our docs.
We're continuously improving our docs. We'd love to know what you liked
We're sorry to hear that. Please share your feedback so we can do better
Contact our Support team for immediate help while we work on improving our docs.
We're continuously improving our docs. We'd love to know what you liked
Thank you for your valuable feedback!