Hello,
We are using Analytics 4.4.1 on a certain platform (which I will not specify to avoid breaking NDA) where this leads to crashes.
The culprit is the DiskCache(IFileSystemCalls) constructor which does this:
k_CacheFilePath = $"{Application.persistentDataPath}/eventcache";
Embedding the package and replacing that line with this one fixes the crash:
k_CacheFilePath = systemCalls.CanAccessFileSystem() ? $"{Application.persistentDataPath}/eventcache" : "";
The rest of the file guards file operations with CanAccessFileSystem() so this is likely an oversight.