8.1 C
London
Thursday, April 18, 2024

ios – Getting a Lacking API declaration after sending my app to Apple for evaluate


I lastly deployed my react-native on expo-cli app to manufacturing on Appstore, after which Apple hit me with this

ITMS-91053: Lacking API declaration - Your app’s code within the “MagicMusicCreateAISongs” file references a number of APIs that require causes, together with the next API classes: NSPrivacyAccessedAPICategoryDiskSpace...

ITMS-91053: Lacking API declaration - Your app’s code within the “MagicMusicCreateAISongs” file references a number of APIs that require causes, together with the next API classes: NSPrivacyAccessedAPICategoryFileTimestamp...

ITMS-91053: Lacking API declaration - Your app’s code within the “MagicMusicCreateAISongs” file references a number of APIs that require causes, together with the next API classes: NSPrivacyAccessedAPICategorySystemBootTime. ..

ITMS-91053: Lacking API declaration - Your app’s code within the “MagicMusicCreateAISongs” file references a number of APIs that require causes, together with the next API classes: NSPrivacyAccessedAPICategoryUserDefaults...

I added these to my app.json however I am nonetheless getting the difficulty.

"ios": {
      "privacyManifests": {
        "NSPrivacyAccessedAPITypes": [
          {
            "NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryUserDefaults",
            "NSPrivacyAccessedAPITypeReasons": [
              "CA92.1"
            ]
          },
          {
            "NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryDiskSpace",
            "NSPrivacyAccessedAPITypeReasons": [
              "85F4.1"
            ]
          },
          {
            "NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategoryFileTimestamp",
            "NSPrivacyAccessedAPITypeReasons": [
              "DDA9.1"
            ]
          },
          {
            "NSPrivacyAccessedAPIType": "NSPrivacyAccessedAPICategorySystemBootTime",
            "NSPrivacyAccessedAPITypeReasons": [
              "35F9.1"
            ]
          }
        ]
      },

How do I resolve this, please?

Latest news
Related news

LEAVE A REPLY

Please enter your comment!
Please enter your name here