xcode8 commits ipa failed to build the solution to the release problem

  • 2021-01-03 21:06:19
  • OfStack

Recently, iOS10 came out and Xcode upgraded to 8. I wanted to make an update to App, so I modified the code and planned to upload a new package. However, I always found that I could not build a new version

1. If App is charged, then you have to agree to 1 agreement to build a new version of ||. If App is free, then ignore this one

2. If you upload a new package, either Xcode or Application Load tool, as long as you can't see your pre-committed version in the background of ITC and your build version never shows up ➕ , don't wait any longer, I think there is a problem with the ipa package you uploaded (ps: although you seem to have successfully uploaded) as you can see from this picture, my previous versions have had problems

Unable to build the new version of the solution

With the latest Xcod8, the App has to be privacy-compatible with new features

Add the following permission Settings and prompt text to the plist.info file


<string>App Your approval is required , To access the media database </string>
<key>NSBluetoothPeripheralUsageDescription</key>
<string>App Your approval is required , To access Bluetooth </string>
<key>NSCalendarsUsageDescription</key>
<string>App Your approval is required , To access the calendar </string>
<key>NSCameraUsageDescription</key>
<string>App Your approval is required , To access the camera </string>
<key>NSHealthShareUsageDescription</key>
<string>App Your approval is required , To access health Share </string>
<key>NSHealthUpdateUsageDescription</key>
<string>App Your approval is required , To access health updates 
</string>
<key>NSLocationAlwaysUsageDescription</key>
<string>App Your approval is required , To always access the location </string>
<key>NSLocationUsageDescription</key>
<string>App Your approval is required , To access the location </string>
<key>NSLocationWhenInUseUsageDescription</key>
<string>App Your approval is required , To access the location during use </string>
<key>NSMicrophoneUsageDescription</key>
<string>App Your approval is required , To access the microphone </string>
<key>NSMotionUsageDescription</key>
<string>App Your approval is required , Access to sports and fitness </string>
<key>NSPhotoLibraryUsageDescription</key>
<string>App Your approval is required , To access the album </string>
<key>NSRemindersUsageDescription</key>
<string>App Your approval is required , To access reminders </string>

Related articles: