Salve,
ho inviato la mia app sullo store Apple per la verifica come faccio di solito, ma questa volta la verifica non è andata a buon fine e il motivo è questo :
"Missing Purpose String in Info.plist File. Your app's code references one or more APIs that access sensitive user data. The app's Info.plist file should contain a NSLocationAlwaysUsageDescription key with a user-facing purpose string explaining clearly and completely why your app needs the data. Starting spring 2019, all apps submitted to the App Store that access user data will be required to include a purpose string.If you're using external libraries or SDKs, they may reference APIs that require a purpose string. While your app might not use these APIs, a purpose string is still required. You can contact the developer of the library or SDK and request they release a version of their code that doesn't contain the APIs. Learn more (https://developer.apple.com/documentati ... _s_privacy)."
Cosa bisogna fare in questo caso? Ho visto che bisogna aggiungere una stringa nel file Info.plist del tipo:
"expo": {
"ios": {
"bundleIdentifier": "com.app.myapp",
"infoPlist": {
"NSLocationAlwaysUsageDescription": "Some message to appease Apple.",
},
},
}
Ma più che altro vorrei capire perchè viene dato quel responso. L'unica cosa che ho aggiunto è il modulo con le mappe di google quindi immagino sia quello.
Come posso sistemare il problema?