I am writing my first SwiftUI app that uses the FileManager (via .fileImporter) to read data from a saved text (.csv) file.
Although everything seems to be working OK, the Xcode console displays the following every time the code is invoked:
Unknown client: MyApp Name
Perhaps worthy to note…
- My app name is two words long, separated by a space.
- My app name does contain a
ōcharacter.
I hate ignoring errors/warnings AND I'd rather have my app be a KNOWN Client.
Could I be missing something in my code or in my info.plist that informs FileManager of my app's existence?
Here is my code:
.fileImporter(isPresented: $isShowing, allowedContentTypes: [.item], allowsMultipleSelection: false, onCompletion: { results in
// yada yada yada
}