Related
How do I add custom Notification sounds to the Inspire?
I've been able to add all my custom ringtones by creating a file on the sdcard called ringtones. Doesn't seem to work with a folder called notifications.
I was able to do this by creating a notifications folder on my external SD card. Are you rooted/ROMed? Or maybe you are running a ROM that doesn't support it?
Cannibul said:
How do I add custom Notification sounds to the Inspire?
I've been able to add all my custom ringtones by creating a file on the sdcard called ringtones. Doesn't seem to work with a folder called notifications.
Click to expand...
Click to collapse
did you do it like this?
/sdcard/media/notifications
gunnyman said:
did you do it like this?
/sdcard/media/notifications
Click to expand...
Click to collapse
Tried that too. No joy.
cavsoldier19d said:
I was able to do this by creating a notifications folder on my external SD card. Are you rooted/ROMed? Or maybe you are running a ROM that doesn't support it?
Click to expand...
Click to collapse
Rooted and ROMed. Running Android Rev 3.3
my notifications folder is in the root directory of my external sd card
cavsoldier19d said:
my notifications folder is in the root directory of my external sd card
Click to expand...
Click to collapse
I've got one there also.
Maybe revolution doesn't support it, or maybe its looking for another directory.
I could be wrong, but I think it has to he a capital N for Notifications folder. Worth a try anyway.
Sent from my Inspire 4G using XDA Premium App
It has to be in /media/audio/notifications
all lower case
Inspire 4G / Ingersoll v2.4 / XDA app
Got a folder there also.
Still no joy.
Ok. Found out one thing. You can't have any spaces in the file name. Now it's working.
enewman17 said:
It has to be in /media/audio/notifications
all lower case
Inspire 4G / Ingersoll v2.4 / XDA app
Click to expand...
Click to collapse
Cannibul said:
Got a folder there also.
Still no joy.
Ok. Found out one thing. You can't have any spaces in the file name. Now it's working.
Click to expand...
Click to collapse
All of my custom notification sounds are in a folder named "Notifications" in the root directory of my SD card. All of them have spaces in the file name.
I have owned a number of tablets but this is the first time I'm unable to write files to my ext. SD card. Anyone else have this issue?
Thanks
Mr Dasher said:
I have owned a number of tablets but this is the first time I'm unable to write files to my ext. SD card. Anyone else have this issue?
Thanks
Click to expand...
Click to collapse
I have the same issue when using any 3rd party file manager, but doing such through the built in one works. I suspect I just need to back up and format the card through the computer, try that and see how it works.
I ran into the same issue, but reformatting the external SD have no effect. Whether the system is grabbing hold of the extSD and locking out other apps is as yet unknown. Currently I am attempting to figure out how to root the unit so I can gain access with a better FileMngr than the stock one. Still waiting for the download during the reset to finish, so don't know if it will work.
FYI - My device is rooted and I am using ES File Manager and it still does not work.
Mr Dasher said:
FYI - My device is rooted and I am using ES File Manager and it still does not work.
Click to expand...
Click to collapse
Have you format your sd card? I've got same problem, but now it's ok with ES File manager
gacon1000 said:
Have you format your sd card? I've got same problem, but now it's ok with ES File manager
Click to expand...
Click to collapse
Are you sure? Try this:
Reboot the tablet.
Before you do anything else, start ES File manager, and immediately navigate to /mnt/sdcard/extStorages/SdCard.
Menu->New->Folder (leave the default and hit 'OK')
Did it create the folder or show an error message?
(This has become a puzzle for me. Sometimes I can read/write with ES, sometimes I can't. It's damn annoying...)
Mr Dasher said:
I have owned a number of tablets but this is the first time I'm unable to write files to my ext. SD card. Anyone else have this issue?
Thanks
Click to expand...
Click to collapse
I can't post a link to the original post on another forum that worked for me so I will quote it:
Simple solution for external sdcard write access on Android 3.2...if you're rooted
I've found a simple solution for gaining write access to the external sdcard (/mnt/sdcard2) on Android 3.2. The sdcard is mounted r/w, but the owning group is media_rw which is linked to the WRITE_MEDIA_STORAGE permission. Unfortunately, this permission was not required for access to the external sdcard prior to 3.2 so most file management utilities do not request it when they run...meaning they only have read access to the card.
The simple solution, if you're rooted, is as follows:
1. Using a root-enabled file manager, navigate to /system/etc/permissions and make sure you have mounted the file system r/w.
2. Edit platform.xml and find the WRITE_EXTERNAL_STORAGE permission.
3. Add an additional group definition for this permission...<group gid="media_rw" />
4. Save the changes to the file.
5. Restart your tablet.
After this change, any apps that request the WRITE_EXTERNAL_STORAGE permission (which includes almost anything that access either of the sdcards) will gain group membership in both sdcard_rw AND media_rw, giving them r/w access to both sdcard filesystems.
Interesting that it requires root to fix. You would think that even the Samsung file manager would be able to handle it, but it doesn't.
thaloneus said:
I can't post a link to the original post on another forum that worked for me so I will quote it:
Simple solution for external sdcard write access on Android 3.2...if you're rooted
I've found a simple solution for gaining write access to the external sdcard (/mnt/sdcard2) on Android 3.2. The sdcard is mounted r/w, but the owning group is media_rw which is linked to the WRITE_MEDIA_STORAGE permission. Unfortunately, this permission was not required for access to the external sdcard prior to 3.2 so most file management utilities do not request it when they run...meaning they only have read access to the card.
The simple solution, if you're rooted, is as follows:
1. Using a root-enabled file manager, navigate to /system/etc/permissions and make sure you have mounted the file system r/w.
2. Edit platform.xml and find the WRITE_EXTERNAL_STORAGE permission.
3. Add an additional group definition for this permission...<group gid="media_rw" />
4. Save the changes to the file.
5. Restart your tablet.
After this change, any apps that request the WRITE_EXTERNAL_STORAGE permission (which includes almost anything that access either of the sdcards) will gain group membership in both sdcard_rw AND media_rw, giving them r/w access to both sdcard filesystems.
Click to expand...
Click to collapse
@thaloneus:
Thanks for finding and posting that procedure. Was having that excact problem and after making the edit to permissions I am now able to write to the external sd card. ES file explorer now allows writing to the external sd as well as Titanium Backup.
Interesting note: Titanium was backing up to the internal sd. Once the external became available to write to I was able to create a backup folder there and ran another batch of backups.
thaloneus said:
I can't post a link to the original post on another forum that worked for me so I will quote it:
Simple solution for external sdcard write access on Android 3.2...if you're rooted
I've found a simple solution for gaining write access to the external sdcard (/mnt/sdcard2) on Android 3.2. The sdcard is mounted r/w, but the owning group is media_rw which is linked to the WRITE_MEDIA_STORAGE permission. Unfortunately, this permission was not required for access to the external sdcard prior to 3.2 so most file management utilities do not request it when they run...meaning they only have read access to the card.
The simple solution, if you're rooted, is as follows:
1. Using a root-enabled file manager, navigate to /system/etc/permissions and make sure you have mounted the file system r/w.
2. Edit platform.xml and find the WRITE_EXTERNAL_STORAGE permission.
3. Add an additional group definition for this permission...<group gid="media_rw" />
4. Save the changes to the file.
5. Restart your tablet.
After this change, any apps that request the WRITE_EXTERNAL_STORAGE permission (which includes almost anything that access either of the sdcards) will gain group membership in both sdcard_rw AND media_rw, giving them r/w access to both sdcard filesystems.
Click to expand...
Click to collapse
Thanks worked like a charm
Please someone provide me more details or give me the picture of the edited .xml thanks.
Sent from my GT-P6200L using Tapatalk
boonhim said:
Please someone provide me more details or give me the picture of the edited .xml thanks.
Sent from my GT-P6200L using Tapatalk
Click to expand...
Click to collapse
Here is a screenshot of the edited .xml
Sent from my GT-P6210
StingerDog said:
@thaloneus:
Thanks for finding and posting that procedure. Was having that excact problem and after making the edit to permissions I am now able to write to the external sd card. ES file explorer now allows writing to the external sd as well as Titanium Backup.
Interesting note: Titanium was backing up to the internal sd. Once the external became available to write to I was able to create a backup folder there and ran another batch of backups.
Click to expand...
Click to collapse
From what Ive found you need superuser access to the external sdcard to write to it. I've always been able to access the external sdcard with Titanium Backup as the location of the backup was the first thing I changed in its settings when I installed it. Root Explorer can write to it too. The only programs that can't are the ones without superuser access, ES File Explorer is one I have that I can't get its root explorer working, its not requesting superuser access, so it can't write to the sdcard.
Not sure if this has anything to do with the sdcard mounting to a pc as an MTP device instead of MSC or not but really irritated by that protocol. Not sure if this (MTP) is native to Honeycomb or if Samsung wanted the external storage accessed in this way.
Thank so much.
Sent from my GT-P6200L using Tapatalk
kzoodroid said:
From what Ive found you need superuser access to the external sdcard to write to it. I've always been able to access the external sdcard with Titanium Backup as the location of the backup was the first thing I changed in its settings when I installed it. Root Explorer can write to it too. The only programs that can't are the ones without superuser access, ES File Explorer is one I have that I can't get its root explorer working, its not requesting superuser access, so it can't write to the sdcard.
Not sure if this has anything to do with the sdcard mounting to a pc as an MTP device instead of MSC or not but really irritated by that protocol. Not sure if this (MTP) is native to Honeycomb or if Samsung wanted the external storage accessed in this way.
Click to expand...
Click to collapse
If you're still having trouble with apps not writing to the external sd, you might want to edit that .xml file thaloneus had mentioned.
Once I did that I had full access to write to that card from any app. Took me all of like five minutes to edit and test it out.
I'm having some trouble with this procedure. Like everyone else, I couldn't write to my external SD card using ES Explorer or what not, although the stock Samsung My Files explorer could (and strangely, if I use a Samba mount I could write to it from my Win7 PC).
Anyway I've rooted everything, and was about to edit platform.xml, but I can't save it. I don't have the ability to write to the system folder.
I think I've done the Mount rw thing, ES File Explorer's option to do it was disabled, but on File Expert it was available. For good measure, I also used the app "mount /system (rw /ro)" but even with all these tools, I still can't write to the system directory.
I'm at my wits end, any ideas?
Mochan said:
I'm having some trouble with this procedure. Like everyone else, I couldn't write to my external SD card using ES Explorer or what not, although the stock Samsung My Files explorer could (and strangely, if I use a Samba mount I could write to it from my Win7 PC).
Anyway I've rooted everything, and was about to edit platform.xml, but I can't save it. I don't have the ability to write to the system folder.
I think I've done the Mount rw thing, ES File Explorer's option to do it was disabled, but on File Expert it was available. For good measure, I also used the app "mount /system (rw /ro)" but even with all these tools, I still can't write to the system directory.
I'm at my wits end, any ideas?
Click to expand...
Click to collapse
What are you using to edit the .xml file? It may not have root explorer functions.
I used the Root Browser from ROM Toolbox to make and save the edit.
Worked for me with Root Explorer. I have tried most of the free file managers, and Root Explorer is worth every penny to me. It is the only app I have paid for.
StingerDog said:
What are you using to edit the .xml file? It may not have root explorer functions.
I used the Root Browser from ROM Toolbox to make and save the edit.
Click to expand...
Click to collapse
i used the free Astro File Manager to navigate to /system/etc/permissions/platform.xml. When I tapped on the platform.xml file I was given a choice of text editors to open it with. When I finished I was offered the option to save the file.
thaloneus said:
i used the free Astro File Manager to navigate to /system/etc/permissions/platform.xml. When I tapped on the platform.xml file I was given a choice of text editors to open it with. When I finished I was offered the option to save the file.
Click to expand...
Click to collapse
There you are thaloneus!
You made the one post that helped me fix that issue, then you disappeared. Glad to see you're back.
Thanks again!
Heya. Does someone knows why i can't change the sdcard storage to RW instead of RO, in Es File Explorer v3.0.3?
What i mean:
View attachment 2000780
andrei7radu said:
Heya. Does someone knows why i can't change the sdcard storage to RW instead of RO, in Es File Explorer v3.0.3?
What i mean:
View attachment 2000780
Click to expand...
Click to collapse
im guessing u granted it root permissions first in settings/root-settings?
andrei7radu said:
Heya. Does someone knows why i can't change the sdcard storage to RW instead of RO, in Es File Explorer v3.0.3?
What i mean:
View attachment 2000780
Click to expand...
Click to collapse
Storage is r/w by default-I think,
Are you expeariencing any troubles with writing to external storage?
Edit: on the app level:
An app asks permission to write to external, on instalation
You- as a user are always allowed to write to...
This in app option is perhaps needed when a part of internal memory,
Is used as sd card- as it is in tablets or htc one x...
or it is an ext (system ) partition, that option is concerned about...
anyway, I'm using es... for ages now, and never have had any troubles with
mounting sd card as r/w
jmcclue said:
im guessing u granted it root permissions first in settings/root-settings?
Click to expand...
Click to collapse
Yeap. Otherwise i wouldn't be able to change and save the others 2 (main root and /system), which i can.
asgardr said:
Storage is r/w by default-I think,
Are you expeariencing any troubles with writing to external storage?
Click to expand...
Click to collapse
That's right ... the in initial state should be RW. I can manipulate the files from Es FE (cut/copy/paste and delete), but i can't change any file's properties or permissions. Strangely, the only ways i can see the storage via usb connection are MTP and PTP (and same behaviour - cut/copy/paste and delete - but no properties changes available - greyed out). If i switch to Media Storage, the PC only displays Removable Storage and prompts me to insert it. Huh?
andrei7radu said:
Yeap. Otherwise i wouldn't be able to change and save the others 2 (main root and /system), which i can.
That's right ... the in initial state should be RW. I can manipulate the files from Es FE (cut/copy/paste and delete), but i can't change any file's properties or permissions. Strangely, the only ways i can see the storage via usb connection are MTP and PTP (and same behaviour - cut/copy/paste and delete - but no properties changes available - greyed out). If i switch to Media Storage, the PC only displays Removable Storage and prompts me to insert it. Huh?
Click to expand...
Click to collapse
Are you running- by any chance- any aosp 4.2.2/4.1.2 rom?
I have the same symptoms on them,
just installed third party app from the market,
and my problem is gone (pc)
as for es.. I've never had any troubles with changing atributes
or permissions
Edit: it is this brand new shiny inrerface of es file explorer,
that makes many- including me- to get confused and sometimes lost- at first
asgardr said:
Are you running- by any chance- any aosp 4.2.2/4.1.2 rom?
I have the same symptoms on them,
just installed third party app from the market,
and my problem is gone (pc)
as for es.. I've never had any troubles with changing atributes
or permissions
Edit: it is this brand new shiny inrerface of es file explorer,
that makes many- including me- to get confused and sometimes lost- at first
Click to expand...
Click to collapse
Using a CM10.1 (see my signature). I'm starting to think that the problem isn't ES's. When i connect the device as a Media Storage i get the following feedback from the status bar: "Connected as an Installer" ... never seen this before.
Will try to restore an earlier backup to check if lest an app is conflicting ... dunno ... I'll return the result.
P.S.
You're right about ES's fresh interface ... a little confusing after using the ancient one for a l.l.long time. Missing the pop-up on long press, instead of (the new) select feature. Eh ...
As for atributes of the files on sd card- I think it does not matter what they are,
because an external storage is a slave disc for the system..
which uses it only as storage...
different story would be if a part of such a slave drive is partitioned to be used as an extention
of an internal memory (ext partition )
but then it is not been seen from the level of a file manager...
Edit: I belive, the trouble with mounting usb disk drive,
is (or at least I think) purely on the system's side..
Would not be bad, if somebody else could comment,
or clarify the matter further though
strange that it dont work coz i just tried it and no problems
menu/root explorer (grant permissions) /mount r/w and i can delete, copy/paste, everything really.
Have u tried uninstalling es file explorer then installing it again?
jmcclue said:
strange that it dont work coz i just tried it and no problems
menu/root explorer (grant permissions) /mount r/w and i can delete, copy/paste, everything really.
Have u tried uninstalling es file explorer then installing it again?
Click to expand...
Click to collapse
Yes, uninstalled it and reverse, but no change. I restored an earlier backup with only a few (necessary) third-party apps, but the problem is still there. Also, if anyone can answer, what the heck is "Connected as an installer" status when selecting Media Storage? Thanks.
As I understand, lollipop should bring back the write access to SD card for third party apps.
However, the app "Ftp server" still cannot write to the SD card.
I cannot root the device due to company restrictions.
Any ideas or suggestions?
Bump!
Yeah, no root no acces.
TheTeslaCoil said:
Yeah, no root no acces.
Click to expand...
Click to collapse
I got this reply from the developer of FTP server pro:
"Basically I would need to use a new set of functions created by google (which are not standard); but I can not do that as I am using a standard implementation of ftp protocol."
So apparently there is a non standard implementation available?
waxxan said:
I got this reply from the developer of FTP server pro:
"Basically I would need to use a new set of functions created by google (which are not standard); but I can not do that as I am using a standard implementation of ftp protocol."
So apparently there is a non standard implementation available?
Click to expand...
Click to collapse
This is exactly mine problem too. I have upgraded to Lollipop in hope to be able to write via FTP Server app to SD card again but it still doesn't work.
Is there another FTP app which can do it?
Also isn't there any other file browser app which can write to SD card (like pre-installed File Commander) ?
Yea, the preinstalled file commander can write to sd. It even have a ftp client.
But I want the other way around.
Have tried a few of the free most popular fpt server apps, but same problem on them all.
Probably/maybe if you make it a system app it'll work. (use Titanium backup for that)
Nvm that's only applicable if you have root, sorry i forgot you can't root...
For those who are interested. FTP server pro has now been updated, and support full access to SD card.
https://play.google.com/store/apps/details?id=com.theolivetree.ftpserverpro&hl=en
No dice, FTP server pro only writes to it's proprietary folder, not to SD card in general.
It is working on my Z3 at least. You might have to choose custom folder, then point the custom folder to the SDcard. That is how i have it configured.
That does the trick ! Thanks !!
Custom Folder
LG G4 - I set up the custom folder to be home but I'm still seeing the root (/). If I try to delete or transfer files -- no dice.
Non-rooted phone.
I'm on non-rooted too. Directly after selecting the sdcard as custom folder, I had the option to grant write access as described here:
https://metactrl.com/docs/sdcard-on-lollipop/
Wobstar said:
I'm on non-rooted too. Directly after selecting the sdcard as custom folder, I had the option to grant write access as described here:
...
Click to expand...
Click to collapse
I didn't receive anything about write access or otherwise after the the window opened to let me select the SD Card.
You have set home folder to custom? And then opened the activated browser just below the home folder option? And select external SD card in that option?
If yes and it didn't work, I would suggest reinstalling the app...
Wobstar said:
You have set home folder to custom? And then opened the activated browser just below the home folder option? And select external SD card in that option?
If yes and it didn't work, I would suggest reinstalling the app...
Click to expand...
Click to collapse
Well it helps to follow ALL the instructions... this is important:
"Don't navigate down into any subfolder. You must select the top-level root folder of the SD card. This is important."
This FTP-Server worked for me:
https://play.google.com/store/apps/details?id=com.theolivetree.ftpserver
In the settings you can select your root directory, don't select "ext. SDCard" it will only let you write in the apps own folder on the SDCard. Select personalized home directory than android asks you were your root directory should be, select your SDCard and confirm it, this should do the trick.
(Tested on LG G4 - Android 6.0)
Hope it works for everyone ;D .
CyanogenMod 13 + ROOT
Yes, writing to external card seems to work this way.
But deleting from the external card does not work. When trying to delete a file i get the error:
error 450: no permission to delete
Why?
Some of you have likely figured this out, but after spending a few minutes poking around ES File Explorer Pro and being unable to locate my 64GB SD card, I finally found the location.
From the root of Device Storage, go to /storage/. Your name will likely vary, but mine was found as /storage/6D31-DA1D.
Having an SD card in my work S5, it was much easier and just required looking for ExtSDCard under /mnt/.
NotATreoFan said:
Some of you have likely figured this out, but after spending a few minutes poking around ES File Explorer Pro and being unable to locate my 64GB SD card, I finally found the location.
From the root of Device Storage, go to /storage/. Your name will likely vary, but mine was found as /storage/6D31-DA1D.
Having an SD card in my work S5, it was much easier and just required looking for ExtSDCard under /mnt/.
Click to expand...
Click to collapse
Just to add, the same applies to a SD card attached using an OTG adapter as well. Not as much need to use OTG now except for those times when you just want to transfer something over quickly.
NotATreoFan said:
Some of you have likely figured this out, but after spending a few minutes poking around ES File Explorer Pro and being unable to locate my 64GB SD card, I finally found the location.
From the root of Device Storage, go to /storage/. Your name will likely vary, but mine was found as /storage/6D31-DA1D.
Having an SD card in my work S5, it was much easier and just required looking for ExtSDCard under /mnt/.
Click to expand...
Click to collapse
Or you can just hit the drop down list and choose it
king3opobn said:
Or you can just hit the drop down list and choose it
Click to expand...
Click to collapse
That is an option too. However I got used to having all the side menus collapsed and didn't even think of that.
NotATreoFan said:
That is an option too. However I got used to having all the side menus collapsed and didn't even think of that.
Click to expand...
Click to collapse
This drop down is faster
6D31-DA1D looks like the assigned serial number after the card is formatted. If that is true, then everyone will have to look for a different hex number for their card.
BTW is ES File Explorer allowed write access the SD card without root?
KurrentUser said:
6D31-DA1D looks like the assigned serial number after the card is formatted. If that is true, then everyone will have to look for a different hex number for their card.
BTW is ES File Explorer allowed write access the SD card without root?
Click to expand...
Click to collapse
First time you try to write to the SD card, you get prompted to follow some steps. From there on, it can write to the card without error. Created a test folder and file on the root to verify.
NotATreoFan said:
First time you try to write to the SD card, you get prompted to follow some steps. From there on, it can write to the card without error. Created a test folder and file on the root to verify.
Click to expand...
Click to collapse
So I gather that Marshmallow didn't inherit the Lollipop "Apps can't write to SD card" rule. That's good news. I prefer to transfer files from my PC to the phone via WiFi. Never made sense to have to use two file managers to copy files to the SD card.
KurrentUser said:
So I gather that Marshmallow didn't inherit the Lollipop "Apps can't write to SD card" rule. That's good news. I prefer to transfer files from my PC to the phone via WiFi. Never made sense to have to use two file managers to copy files to the SD card.
Click to expand...
Click to collapse
They are restricted by default, but you can grant them access if they've been updated to know how to properly request it. Google made that change awhile ago, but most apps or OEMs never implemented it.
Root Explorer force closes on me upon tapping "select" to write to my SD card. Any input on this would be greatly appreciated.
LuigiBull23 said:
Root Explorer force closes on me upon tapping "select" to write to my SD card. Any input on this would be greatly appreciated.
Click to expand...
Click to collapse
Root Explorer might be looking for root access? Dunno. Try ES File Explorer maybe
glensta said:
Root Explorer might be looking for root access? Dunno. Try ES File Explorer maybe
Click to expand...
Click to collapse
I don't believe it needs root to achieve this. I've done it before. It's just not working now for whatever reason.
LuigiBull23 said:
I don't believe it needs root to achieve this. I've done it before. It's just not working now for whatever reason.
Click to expand...
Click to collapse
Have you used it on unrooted 6.0.1 yet?
NotATreoFan said:
Have you used it on unrooted 6.0.1 yet?
Click to expand...
Click to collapse
We don't have root yet so yes I've tried it on stock 6.0.1
LuigiBull23 said:
Root Explorer force closes on me upon tapping "select" to write to my SD card. Any input on this would be greatly appreciated.
Click to expand...
Click to collapse
This happened to me after running Package Disabler, also complete inability to write to SD card with ES, MI, or any other file explorer. Turns out Package Disabler flags External Storage(com.android.externalstorage) as bloatware and I had to make sure I unchecked and enabled it again.
Sent from my SM-G935T using XDA Labs
You can change storage location also
LuigiBull23 said:
We don't have root yet so yes I've tried it on stock 6.0.1
Click to expand...
Click to collapse
I was referring to testing on another device with 6.0.1.
NotATreoFan said:
I was referring to testing on another device with 6.0.1.
Click to expand...
Click to collapse
No since the S6 hasn't received the update yet.
LuigiBull23 said:
No since the S6 hasn't received the update yet.
Click to expand...
Click to collapse
Just tested on my phone and got the same FC after tapping SD Card. Root Explorer likely needs an update to resolve it.
NotATreoFan said:
Just tested on my phone and got the same FC after tapping SD Card. Root Explorer likely needs an update to resolve it.
Click to expand...
Click to collapse
I don't think Root Explorer is the issue because no file manager app I've tried allows me to write to the sd card.