问题1:iOS提交TestFlight测试显示缺乏合规证实测试
解决:有的时候testFlight会显示@“缺乏合规证实”
最简单的解决办法就是点击文字前边的黄色标识符,会询问你是否加密,选择相应选项就能够开始测试了加密
可是须要每个版本都点击黄色标识符。最后有一种不用点击的方法,在info.plist中添加:blog
<key>ITSAppUsesNonExemptEncryption</key><false/>
问题2:iTunes Connect没法添加构建版本ip
这里由于咱们在打的发布包不符合条件吧,在info.plish中添加get
<key>NSAppleMusicUsageDescription</key> <string>App须要您的赞成,才能访问媒体资料库</string> <key>NSBluetoothPeripheralUsageDescription</key> <string>App须要您的赞成,才能访问蓝牙</string> <key>NSCalendarsUsageDescription</key> <string>App须要您的赞成,才能访问日历</string> <key>NSCameraUsageDescription</key> <string>App须要您的赞成,才能访问相机</string> <key>NSHealthShareUsageDescription</key> <string>App须要您的赞成,才能访问健康分享</string> <key>NSHealthUpdateUsageDescription</key> <string>App须要您的赞成,才能访问健康更新 </string> <key>NSLocationAlwaysUsageDescription</key> <string>App须要您的赞成,才能始终访问位置</string> <key>NSLocationUsageDescription</key> <string>App须要您的赞成,才能访问位置</string> <key>NSLocationWhenInUseUsageDescription</key> <string>App须要您的赞成,才能在使用期间访问位置</string> <key>NSMicrophoneUsageDescription</key> <string>App须要您的赞成,才能访问麦克风</string> <key>NSMotionUsageDescription</key> <string>App须要您的赞成,才能访问运动与健身</string> <key>NSPhotoLibraryUsageDescription</key> <string>App须要您的赞成,才能访问相册</string> <key>NSRemindersUsageDescription</key> <string>App须要您的赞成,才能访问提醒事项</string>
参考 :string