• 提交上了,却在iTunes Connect没有新版本的任何消息


    上架的时候,收到这样的邮件

    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.

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

    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.

    在plist列表里选择Source Code,如图,

    添加一下三项内容:

    <key>NSCameraUsageDescription</key>
        <string>cameraDesciption</string>
        <key>NSContactsUsageDescription</key>
        <string>contactsDesciption</string>
        <key>NSLocationWhenInUseUsageDescription</key>
        <true/>
        <key>NSMicrophoneUsageDescription</key>
        <string>microphoneDesciption</string>
        <key>NSPhotoLibraryUsageDescription</key>
        <string>photoLibraryDesciption</string>

    OK,到这里就搞定了,可以再次换个版本号再次上架哦!

    希望后来的朋友不要掉坑里哦!

    如果对你有帮助,请关注我哦!

  • 相关阅读:
    poj 1733 Parity game
    poj 1456 Supermarket
    bzoj 1304 [CQOI 2009] 叶子的染色
    51Nod 1667 概率好题
    2015年阿里巴巴校招研发工程师在线笔试题汇总
    从字符串常量起说内存分配
    字符串笔面试题
    排序算法(4)-线性时间排序
    华为2015校园招聘机试
    笔画宽度变化(C++和matlab算法)
  • 原文地址:https://www.cnblogs.com/laolitou-ping/p/6234659.html
Copyright © 2020-2023  润新知