You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@cordova.apache.org by "Szabolcs Balogh (JIRA)" <ji...@apache.org> on 2015/08/13 10:05:45 UTC

[jira] [Created] (CB-9486) On Android, when the recording is saved into the application's cache folder, the playback will fail.

Szabolcs Balogh created CB-9486:
-----------------------------------

             Summary: On Android, when the recording is saved into the application's cache folder, the playback will fail.
                 Key: CB-9486
                 URL: https://issues.apache.org/jira/browse/CB-9486
             Project: Apache Cordova
          Issue Type: Bug
          Components: Plugin Media
         Environment: Android
            Reporter: Szabolcs Balogh


When saving the recording, there is a condition to check where to save the file.
 
if (Environment.getExternalStorageState().equals(Environment.MEDIA_MOUNTED)) {
    file = Environment.getExternalStorageDirectory().getAbsolutePath() + File.separator + file;
} else {
    file = "/data/data/" + handler.cordova.getActivity().getPackageName() + "/cache/" + file;
}

but during playback it always tries to load the file from external storage (if there is no full path specified).

this.player.setDataSource(Environment.getExternalStorageDirectory().getPath() + "/" + file);



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@cordova.apache.org
For additional commands, e-mail: issues-help@cordova.apache.org