Is their a way to check what mobile the user uses. I will explain why I want to know this.
In my app, I must take photo's from the Camera path of the user. In the samsung devices, that is DCIM/Camera. But in the HTC devices, that is DCIM/100MEDIA.
So when I see the user got a HTC phone, I can change the Camera path string in my app.
Or is their a way to acces the Camera folder on phone?
I know how to acces the root:
File root = Environment.getExternalStorageDirectory();
I already tried Environment.DIRECTORY_PICTURES;
and Environment.DIRECTORY_DCIM;
Maybe I use it in a wrong way.
Any Ideas are welcome.