What you can do is run:
xcodebuild -target <target> -configuration <configuration> -showBuildSettings
This command shows all the parameters that were filled in to transmit the target and configuration. Find the name of the key containing $(SDKROOT)/ResourceRules.plist
(call him THE_KEY), and then try:
xcodebuild -target <target> -configuration <configuration> THE_KEY=<new_value>
Do not guarantee that it will work.
source share