Android Question No sound cameraEx @ Galaxy S4

JDS

Active Member
Licensed User
Longtime User
While building an app with the cameraex library we noticed that there was no sound on a galaxy S4. However on a HTC Wildfire S there was a sound when taking a picture.
This also happens in the cameraEx example.

In some countries it isn't allowed to take pictures without sound. Any thoughts?

We already added the following to CamaraExClass. This didn't make a difference.

B4X:
Public Sub EnableShutterSound(Enabled As Boolean) As Boolean
   r.Target = nativeCam
   Return r.RunMethod2("enableShutterSound", Enabled, "java.lang.boolean")
End Sub
 
Top