How do I get files synchronized from Firebase in Android?
问题 I am trying to make an application that works with audio files. I have to import and merge audio files from Firebase in a part of the application. Here is the code block from merge operations; protected void combine() { String randomFileName = String.valueOf(System.currentTimeMillis()); lastRecordedFilePath = Environment.getExternalStorageDirectory() + "/MueasycoCombinedAudios/" + randomFileName + ".wav"; lastRecordedFileName = randomFileName + ".wav"; File folder = new File(Environment