---
title: Resign iOS Apps for Automated Testing
description: TestingBot will automatically resign your iOS app for Automated Testing
  with Appium.
source_url:
  html: https://testingbot.com/support/app-automate/help/app-resigning
  md: https://testingbot.com/support/app-automate/help/app-resigning.md
---

# iOS App Resigning

When you [upload an iOS app](https://testingbot.com/support/app-automate/help/upload) to TestingBot, we will automatically re-sign the `.ipa` file with our own provisioning profile, to be able to install and run your app on our mobile devices.

Because of this procedure, the [entitlements](https://developer.apple.com/documentation/bundleresources/entitlements) of your iOS app will be removed.

You can choose to disable this re-signing, if your app is signed using the [Apple Developer Enterprise Program](https://developer.apple.com/programs/enterprise/). This way you can test **push notifications** or [universal links](https://developer.apple.com/ios/universal-links/) on our physical devices.

## Disable iOS Resigning
[Ruby](https://testingbot.com#) [Python](https://testingbot.com#) [PHP](https://testingbot.com#) [Java](https://testingbot.com#) [NodeJS](https://testingbot.com#) [C#](https://testingbot.com#)

```ruby
capabilities = {
  "tb:options" => {
    "resigningEnabled" => false
  }
}
```

```java
Map<String, Object> tbOptions = new HashMap<>();
tbOptions.put("resigningEnabled", false);
options.setCapability("tb:options", tbOptions);
```

```php
$capabilities = [
  "tb:options" => [
    "resigningEnabled" => false
  ]
];
```

```python
capabilities = {
  "tb:options": {
    "resigningEnabled": False
  }
}
```

```javascript
const capabilities = {
  "tb:options": {
    "resigningEnabled": false
  }
};
```

```csharp
var tbOptions = new Dictionary<string, object>
{
  ["resigningEnabled"] = false
};
options.AddAdditionalAppiumOption("tb:options", tbOptions);
```

### Looking for more help?

Have questions or need more information? Reach out via email or Slack.

[Email us](https://testingbot.com/contact/new) [Join our Slack](https://join.slack.com/t/testingb0t/shared_invite/zt-3bcw9xch-jk19~6XPs_xBrsAgAedkCw)
