Merge branch 'audiorecorder-3.2.19'

This commit is contained in:
Alexey Kuznetsov 2018-08-23 18:40:40 +03:00
commit b113d8d8d2
2 changed files with 4 additions and 3 deletions

View file

@ -10,8 +10,8 @@ android {
applicationId "com.github.axet.audiorecorder"
minSdkVersion 9
targetSdkVersion 23 // 24+ file:// unable to open
versionCode 276
versionName "3.2.18"
versionCode 277
versionName "3.2.19"
}
signingConfigs {
release {
@ -57,5 +57,5 @@ android {
dependencies {
testImplementation 'junit:junit:4.12'
implementation 'com.github.axet:android-audio-library:1.0.117' // implementation project(':android-audio-library')
implementation 'com.github.axet:android-audio-library:1.0.118' // implementation project(':android-audio-library')
}

View file

@ -734,6 +734,7 @@ public class RecordingActivity extends AppCompatThemeActivity {
map.put(getString(R.string.source_raw), MediaRecorder.AudioSource.UNPROCESSED);
else
map.put(getString(R.string.source_raw), MediaRecorder.AudioSource.VOICE_RECOGNITION);
map.put(getString(R.string.source_bluetooth), MediaRecorder.AudioSource.MIC);
int[] ss = new int[]{
map.get(shared.getString(MainApplication.PREFERENCE_SOURCE, getString(R.string.source_mic))),