1、Invalid bundle display name - "  app名字" starts with a whitespace character.

报错原因:app名字前有空格,去掉就好了

2、build 版本号重复

3、info.plist缺少一些权限设置

直接在Info.plist添加以下内容

    <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>NSContactsUsageDescription</key>
    <string>是否允许此App访问您的通讯录?</string>
    <key>NSLocationAlwaysUsageDescription</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>NSSpeechRecognitionUsageDescription</key>
    <string>是否允许此App访问您的语音识别?</string>


如果还解决不了,可以查看邮箱,邮箱里会有详细报错原因

4、Values of type 'NSInteger' should not be used as format arguments...

解决办法:把所有的%zd 替换为 %ld ; eventLag 替换为 (long)eventLag

ios打包ipa 构建版本失败 报错原因

以上

相关文章:

  • 2021-10-21
  • 2021-11-04
  • 2021-06-24
  • 2021-05-10
  • 2021-10-14
  • 2021-06-19
  • 2021-09-08
  • 2022-02-08
猜你喜欢
  • 2022-12-23
  • 2021-05-23
  • 2021-04-03
  • 2022-01-09
  • 2021-06-11
  • 2021-09-18
  • 2021-12-27
相关资源
相似解决方案