我想在iOS模拟器中运行测试时禁止照片授权对话框。为此,我要包含一个Entitlements.plist as mentioned here。
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>com.apple.private.tcc.allow.overridable</key>
<array>
<string>kTCCServiceAddressBook</string>
<string>kTCCServiceCalendar</string>
<string>kTCCServicePhotos</string>
</array>
</dict>
</plist>
当我使用开发人员证书对应用程序进行签名时,本地工作正常。但是,我想在CI(Travis CI,特别是)上运行这些测试而无需上传证书。当我没有在应用程序上签名时,Xcode足以给我以下警告:
警告:需要来自&#34; Supporting Files / Entitlements.plist&#34;可能无法在模拟器中运行,因为目标&#34;测试主机&#34;没有适用于iOS的有效代码签名标识。
是否可以在不签署应用程序的情况下使用这些权利?