File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -386,7 +386,7 @@ public float getDurationAudio(String id, String file) {
386
386
*/
387
387
@ SuppressWarnings ("deprecation" )
388
388
public void setAudioOutputDevice (int output ) {
389
- private static final String TAG1 = "AudioHandler.setAudioOutputDevice(): Error : " ;
389
+ String TAG1 = "AudioHandler.setAudioOutputDevice(): Error : " ;
390
390
391
391
AudioManager audiMgr = (AudioManager ) this .cordova .getActivity ().getSystemService (Context .AUDIO_SERVICE );
392
392
if (output == 2 ) {
@@ -437,7 +437,7 @@ public void onAudioFocusChange(int focusChange) {
437
437
};
438
438
439
439
public void getAudioFocus () {
440
- private static final String TAG2 = "AudioHandler.getAudioFocus(): Error : " ;
440
+ String TAG2 = "AudioHandler.getAudioFocus(): Error : " ;
441
441
442
442
AudioManager am = (AudioManager ) this .cordova .getActivity ().getSystemService (Context .AUDIO_SERVICE );
443
443
int result = am .requestAudioFocus (focusChangeListener ,
@@ -477,7 +477,7 @@ else if (audiMgr.getRouting(AudioManager.MODE_NORMAL) == AudioManager.ROUTE_SPEA
477
477
* @param volume Volume to adjust to 0.0f - 1.0f
478
478
*/
479
479
public void setVolume (String id , float volume ) {
480
- private static final String TAG3 = "AudioHandler.setVolume(): Error : " ;
480
+ String TAG3 = "AudioHandler.setVolume(): Error : " ;
481
481
482
482
AudioPlayer audio = this .players .get (id );
483
483
if (audio != null ) {
You can’t perform that action at this time.
0 commit comments