Remote iOS debugging for distributed builds

When creating an application through Xcode, all UIWebViews are displayed as scanned applications in Safari, but when archiving and signing for distribution it seems that functionality is lost (possibly for security reasons).

But, alas, I have such a scenario when I create a test environment for web developers who rely on the ability to debug their content and will be distributed to many devices in the form of a distributed ad-hoc package.

Is there a way to re-enable remote debugging in an archive assembly, through configuration settings or something like that?

+4
source share
2 answers

You can only use the web inspector if the application was installed by Xcoode not OTA using HockeyApp. But you can try to open the content that you want to check in Mobile Safari.

https://developer.apple.com/library/safari/documentation/AppleApplications/Conceptual/Safari_Developer_Guide/GettingStarted/GettingStarted.html

Important: you can only view applications on devices that have been transferred to your device with Xcode. You cannot check applications that have been downloaded from the App Store, even if this is your application.

+1
source

Try using TestFlightSDK .

Hope this helps)

-2
source

Source: https://habr.com/ru/post/1480918/


All Articles