02-14-2017, 04:43 PM
That path you listed doesn't actually seem like the normal path created by MobileSheetsPro. It should be /mnt/external_sd/Android/data/com.zubersoft.mobilesheetspro/files. Where did the "Musik" come from?
Also, don't confuse what the internal tablet's file explorer can do versus what applications are allowed to do. If the file explorer comes with the tablet, it may be given write privileges that other apps aren't given. That's why it's usually best to test with an app off the play store. If the file explorer you are mentioning is off the store, did it first ask you for permission to write on the external SD card? If so, it's probably using the new API Google introduced with Android 5.0 that allows developers to request access to removable SD cards a different way. The reason I haven't switched to this yet is it requires me to rewrite every piece of code in my app that deals with files (which could potentially introduce a lot of bugs), and their APi is much slower than direct file access, so it may have negative consequences in terms of performance, especially with things like library backups.
Mike
Also, don't confuse what the internal tablet's file explorer can do versus what applications are allowed to do. If the file explorer comes with the tablet, it may be given write privileges that other apps aren't given. That's why it's usually best to test with an app off the play store. If the file explorer you are mentioning is off the store, did it first ask you for permission to write on the external SD card? If so, it's probably using the new API Google introduced with Android 5.0 that allows developers to request access to removable SD cards a different way. The reason I haven't switched to this yet is it requires me to rewrite every piece of code in my app that deals with files (which could potentially introduce a lot of bugs), and their APi is much slower than direct file access, so it may have negative consequences in terms of performance, especially with things like library backups.
Mike