zoukankan      html  css  js  c++  java
  • 提交上了,却在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,到这里就搞定了,可以再次换个版本号再次上架哦!

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

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

  • 相关阅读:
    「Codeforces 724F」Uniformly Branched Trees
    「笔记」组合入门题选做
    「算法笔记」组合入门与应用
    「算法笔记」可持久化线段树
    「算法笔记」期望 DP 入门
    「NOIP 2016」换教室
    「算法笔记」基础数论
    「笔记」关于乱搞
    python 的列表遍历删除
    Python基础第三篇:函数
  • 原文地址:https://www.cnblogs.com/laolitou-ping/p/6234659.html
Copyright © 2011-2022 走看看