Merge branch 'audiorecorder-1.1.61'

This commit is contained in:
Alexey Kuznetsov 2016-10-08 15:01:18 +03:00
commit 98441748a1
2 changed files with 4 additions and 3 deletions

View file

@ -8,8 +8,8 @@ android {
applicationId "com.github.axet.audiorecorder"
minSdkVersion 16
targetSdkVersion 23
versionCode 82
versionName "1.1.60"
versionCode 83
versionName "1.1.61"
}
signingConfigs {
release {

View file

@ -764,9 +764,10 @@ public class RecordingActivity extends AppCompatActivity {
void encoding(final Runnable run) {
final File in = storage.getTempRecording();
in.mkdirs(); // in case if it were manually deleted
final File out = targetFile;
targetFile.getParentFile().mkdirs(); // in case if it were manually deleted
EncoderInfo info = getInfo();
Encoder e = null;