Mike
Writing in resource cache is currently prohibited on Android:
In /Engine/IO/File.cpp :
if (mode != FILE_READ)
{
LOGERROR("Only read mode is supported for asset files");
return false;
}
If we comment these lines, writing becomes available.
We can for example save and load scenes like on desktop.
So I am wondering why writing is not allowed. Is it unsafe…?