NSAppleMusicUsageDescription - 缺少 Info.plist 键
NSAppleMusicUsageDescription - Missing Info.plist key
我添加了电子邮件建议的密钥,还添加了下拉列表中的密钥。
我清理了项目。我不知道还能尝试什么。
这是来自 Apple 的电子邮件:
Missing Info.plist key - This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSAppleMusicUsageDescription key with a string value explaining to the user how the app uses this data.
您已经在 info.plist
中添加了 NSAppleMusicUsageDescription
键。但是我可以在密钥的两端看到 spaces 。
<key>..NSAppleMusicUsageDescription..<key>
应该没有 space :
<key>NSAppleMusicUsageDescription</key>
<string>Play using while you are hiking</string>
奖励:您的描述中可以包含 space。
我添加了电子邮件建议的密钥,还添加了下拉列表中的密钥。
我清理了项目。我不知道还能尝试什么。
这是来自 Apple 的电子邮件:
Missing Info.plist key - This app attempts to access privacy-sensitive data without a usage description. The app's Info.plist must contain an NSAppleMusicUsageDescription key with a string value explaining to the user how the app uses this data.
您已经在 info.plist
中添加了 NSAppleMusicUsageDescription
键。但是我可以在密钥的两端看到 spaces 。
<key>..NSAppleMusicUsageDescription..<key>
应该没有 space :
<key>NSAppleMusicUsageDescription</key>
<string>Play using while you are hiking</string>
奖励:您的描述中可以包含 space。