fix raw folder creating

This commit is contained in:
Alexey Kuznetsov 2018-04-11 22:30:39 +03:00
commit 577471bf5e
2 changed files with 2 additions and 1 deletions

View file

@ -54,5 +54,5 @@ android {
dependencies {
testImplementation 'junit:junit:4.12'
implementation 'com.github.axet:android-audio-library:1.0.98' // implementation project(':android-audio-library')
implementation 'com.github.axet:android-audio-library:1.0.99' // implementation project(':android-audio-library')
}

View file

@ -712,6 +712,7 @@ public class RecordingActivity extends AppCompatThemeActivity {
try {
startRecordingError();
} catch (RuntimeException e) {
Log.d(TAG, "unable to start", e);
Toast.makeText(RecordingActivity.this, "Unable to initialize AudioRecord", Toast.LENGTH_SHORT).show();
finish();
}