I have 3 soundboards that give the users the ability to copy and set a specific clip for use as ringer or notification.
The issue I am seeing is largely with ICS, and Jellybean devices.
With gingerbread the code worked fine on the 8 different devices it was tested on.
Code sample below.
The issue I am seeing is largely with ICS, and Jellybean devices.
With gingerbread the code worked fine on the 8 different devices it was tested on.
Code sample below.
B4X:
If File.Exists(File.DirRootExternal & "/media/audio/ringtones","Round_End.mp3")=False Then
File.Copy(File.DirAssets,"Round_End.mp3",File.DirRootExternal & "/media/audio/ringtones","ZS_Round_End.mp3")
u = rm.AddToMediaStore(File.DirRootExternal & "/media/audio/ringtones", "ZS_Round_End.mp3", "ZS_Round_End", True, True, True, False)
Else Return
End If