0
我嘗試將我的應用添加到應用商店。我提交了該應用,但遭到拒絕(metadata rejection
)。我收到一條消息,他們在info.plist
中發現相機使用情況,但他們不知道我在哪裏使用相機。由於缺少Info.plist密鑰而被拒絕的應用
我解釋了他們在哪裏使用相機,那沒問題。但之後是因爲缺少Info.plist密鑰而被拒絕。丟失的鑰匙是NSCalendarsUsageDescription
和NSBluetoothPeripheralUsageDescription
。但問題是,我的應用程序不使用這兩個中的任何一個。也許一些依賴?我可以添加key value
對info.plist
。例如
<key>NSCalendarsUsageDescription</key>
<string>$(PRODUCT_NAME) needs to use your calendar.</string>
<key>NSBluetoothPeripheralUsageDescription</key>
<string>$(PRODUCT_NAME) needs to use your bluetooth.</string>
但是如果我得到與相機相同的問題呢?我無法回答,因爲我不知道我的哪些依賴項使用藍牙或日曆。
是否有人知道如何檢查訪問隱私敏感數據的嘗試(在本例中爲NSCalendarsUsageDescription
和NSBluetoothPeripheralUsageDescription
)?
你的庫可能需要使用它們,這可能是爲什麼 – Tj3n