I am facing a problem while uploading new version of the application.
I have checked the answer of Same question but didn't find the satisfied answer.
Issue:
Your app has the UIFileSharingEnabled key set to true in the Info.plist, but this feature is not functional.
When file sharing is enabled, the entire Documents folder is used for file sharing. Files that are not intended for user access via the file sharing feature should be stored in another part of your application's bundle. If your application does not require the file sharing feature, the UIFileSharingEnabled key in the Info.plist should not be set to true.
In Info Plist i have set the Application supports iTunes file sharing
to Yes.
For all the Document operation i have used below code
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask,YES);
How can i resolve this issue?