Closed GoogleCodeExporter closed 9 years ago
CSipSimple use the official android api to get the folder to store it's conf
and recoreded conversations.
See :
http://developer.android.com/reference/android/os/Environment.html#getExternalSt
orageDirectory%28%29
I guess that it returns sdcard on your ROM. There is absolutely nothing that
the app can do for that. The app should use the official Android API to store
its file else it will result bugs on many devices.
So in your case, if your ROM return sdcard as the external storage directory,
the app should use it and not another directory based on some fuzzy guess.
To fix that, what should be fixed is your ROM, not the app.
Basically this setting (to tell where is external storage for all android apps)
is in environement of your android.
Basically if you know how to launch adb, you can launch :
adb shell env
You'll see what is setup on your android device (search the var
EXTERNAL_STORAGE).
CSipSimple just use this value. There is no magic ;)
(Even, you can probably dynamically change this value with adb shell (and then
when in the shell redefine the exported var - But I'd rather advise to fix that
in ROM if possible).
Original comment by r3gis...@gmail.com
on 1 Oct 2011 at 6:10
Original issue reported on code.google.com by
michael....@gmail.com
on 1 Oct 2011 at 3:34