Получение декларации об отсутствующем API после отправки моего приложения в Apple на проверкуIOS

Программируем под IOS
Anonymous
Получение декларации об отсутствующем API после отправки моего приложения в Apple на проверку

Сообщение Anonymous »

Наконец-то я развернул свое приложение React-native on expo-cli в рабочей среде в Appstore, а затем Apple поразила меня этим

Код: Выделить всё

ITMS-91053: Missing API declaration - Your app’s code in the “MagicMusicCreateAISongs” file references one or more APIs that require reasons, including the following API categories: NSPrivacyAccessedAPICategoryDiskSpace...

ITMS-91053: Missing API declaration - Your app’s code in the “MagicMusicCreateAISongs” file references one or more APIs that require reasons, including the following API categories: NSPrivacyAccessedAPICategoryFileTimestamp...

ITMS-91053: Missing API declaration - Your app’s code in the “MagicMusicCreateAISongs” file references one or more APIs that require reasons, including the following API categories: NSPrivacyAccessedAPICategorySystemBootTime. ..

ITMS-91053: Missing API declaration - Your app’s code in the “MagicMusicCreateAISongs” file references one or more APIs that require reasons, including the following API categories: NSPrivacyAccessedAPICategoryUserDefaults...
Я добавил их в свой app.json, но проблема все еще возникает.

Код: Выделить всё

"ios": {
"privacyManifests": {
"NSPrivacyAccessedAPITypes": [
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryUserDefaults",
"NSPrivacyAccessedAPITypeReasons": [
"CA92.1"
]
},
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryDiskSpace",
"NSPrivacyAccessedAPITypeReasons": [
"85F4.1"
]
},
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryFileTimestamp",
"NSPrivacyAccessedAPITypeReasons": [
"DDA9.1"
]
},
{
"NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategorySystemBootTime",
"NSPrivacyAccessedAPITypeReasons": [
"35F9.1"
]
}
]
},
Как мне решить эту проблему?


Подробнее здесь: https://stackoverflow.com/questions/783 ... for-review

Вернуться в «IOS»