I understand there are 3 directories the app has access to TMP, CACHE, DOCUMENTS.
The RESOURCES directory is read only (being the app bundle itself)
If I want to store sensitive information that should persist for the lifetime of the app on that device - where should I place it?
I am thinking something like a cryptographic key.
If the app is uninstalled, the data should be removed.
The data should persist as long as the app is installed on the device.
It should NOT be possible to backup the data - either by Apple/Google, any third party, or by the user.
It should NOT be possible to view the data - either by Apple/Google, a third party, or the user.
Do any of the 3 provided directories satisfy this requirement?