I am working on porting my Unity windows application to Android and have been trying to figure out how to re-implement the external config-file reading process on a Samsung Galaxy Tab.
I have read that Unity has the Application.persistentDataPath function that returns a safe path for the Android application to perform file IO. On the Galaxy Tab, it returns “data/data/com.MyDemo/files”. I have been trying to copy a simple text config file from windows to that persistent data path on the Android device directly via USB but no matter what I do, I simply could not find the directory anywhere, either in both windows explorer or on the device file manager itself.
This is really baffling to me. How on earth can I “install” basic config files if I cannot even access the data folder manually? Is there anyway to do this?