Merge branch 'audiorecorder-1.3.3'

This commit is contained in:
Alexey Kuznetsov 2017-02-14 17:27:12 +03:00
commit dfb57d7d4a
2 changed files with 2 additions and 4 deletions

View file

@ -8,8 +8,8 @@ android {
applicationId "com.github.axet.audiorecorder"
minSdkVersion 9
targetSdkVersion 23
versionCode 100
versionName "1.3.2"
versionCode 101
versionName "1.3.3"
}
signingConfigs {
release {

View file

@ -19,7 +19,6 @@ public class Factory {
if (Build.VERSION.SDK_INT >= 18)
ll.add(".m4a");
ll.add(".mka");
ll.add(".ogg");
return ll.toArray(new String[]{});
}
@ -29,7 +28,6 @@ public class Factory {
if (Build.VERSION.SDK_INT >= 18)
ll.add("m4a");
ll.add("mka");
ll.add("ogg");
return ll.toArray(new String[]{});
}