美文网首页
APP上传未出现构建版本问题解决

APP上传未出现构建版本问题解决

作者: 什么都为null | 来源:发表于2017-06-12 14:32 被阅读0次

    记性不好,出现问题既然解决了,那就记一记吧。。。

    例如:

    Missing Info.plist key- This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSPhotoLibraryUsageDescription key with a string value explaining to the user how the app uses this data.

    Missing Info.plist key- This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSCameraUsageDescription key with a string value explaining to the user how the app uses this data.

    权限问题,info.plist里添加对应的权限配置

    解决方法:

    NSPhotoLibraryUsageDescriptionApp需要您的同意,才能访问相册

    NSCameraUsageDescriptionApp需要您的同意,才能访问相机

    NSMicrophoneUsageDescriptionApp需要您的同意,才能访问麦克风

    NSLocationUsageDescriptionApp需要您的同意,才能访问位置

    NSLocationWhenInUseUsageDescriptionApp需要您的同意,才能在使用期间访问位置

    NSLocationAlwaysUsageDescriptionApp需要您的同意,才能始终访问位置

    NSCalendarsUsageDescriptionApp需要您的同意,才能访问日历

    NSRemindersUsageDescriptionApp需要您的同意,才能访问提醒事项

    NSMotionUsageDescriptionApp需要您的同意,才能访问运动与健身

    NSHealthUpdateUsageDescriptionApp需要您的同意,才能访问健康更新

    NSHealthShareUsageDescriptionApp需要您的同意,才能访问健康分享

    NSBluetoothPeripheralUsageDescriptionApp需要您的同意,才能访问蓝牙

    NSAppleMusicUsageDescriptionApp需要您的同意,才能访问媒体资料库



    Missing Push Notification Entitlement- Your app appears to register with the Apple Push Notification service, but the app signature's entitlements do not include the "aps-environment" entitlement. If your app uses the Apple Push Notification service, make sure your App ID is enabled for Push Notification in the Provisioning Portal, and resubmit after signing your app with a Distribution provisioning profile that includes the "aps-environment" entitlement. Xcode 8 does not automatically copy the aps-environment entitlement from provisioning profiles at build time. This behavior is intentional. To use this entitlement, either enable Push Notifications in the project editor's Capabilities pane, or manually add the entitlement to your entitlements file. For more information, see https://developer.apple.com/library/content/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/HandlingRemoteNotifications.html#//apple_ref/doc/uid/TP40008194-CH6-SW1.

    解决方法:TARGETS ---> Capabilities --->打开Push Notifications开关

    最后等几分钟用申请开发者账号的邮箱就会收到邮件辣:

    Dear **** Co., Ltd,

    The following build has completed processing:

    Platform: iOS

    App Name: ***

    Build Number: 1.0

    Version Number: 1.0

    App SKU: ***

    App Apple ID: ****

    You can now use this build for TestFlight testing or submit it to the App Store.

    If you have any questions regarding your app, click Contact Us in iTunes Connect.

    Regards,

    The App Store team

    恭喜!!选择上传成功的构建版本提交审核吧!

    相关文章

      网友评论

          本文标题:APP上传未出现构建版本问题解决

          本文链接:https://www.haomeiwen.com/subject/rvylqxtx.html