I am building an app that contains its own iCloud container. The capabilities configuration is attached below.
Below is the key entry in Info.plist.
<key>iCloud.com.dearle.Ascert</key>
<dict>
<key>NSUbiquitousContainerIsDocumentScopePublic</key>
<true/>
<key>NSUbiquitousContainerSupportedFolderLevels</key>
<string>Any</string>
<key>NSUbiquitousContainerName</key>
<string>Ascert</string>
</dict>
It is my understanding that anything I put into my app container should show up in the iCloud drive under a folder named Ascert and that I should be able to open the document in my app from the iCloud drive.
I have tried everything I can think of, unfortunately I am not very experienced with xCode so am unsure of where I am going wrong.
Any help would be appreciated.