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: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to