---
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/index.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#)

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

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

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

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

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

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

Was this page helpful? Yes No 

## Looking for More Help?

Have questions or need more information?   
 You can reach us via the following channels:

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