問題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