diff --git a/app/build.gradle b/app/build.gradle index ec74237..f515f7d 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -9,8 +9,8 @@ android { applicationId "com.github.axet.audiorecorder" minSdkVersion 9 targetSdkVersion 28 - versionCode 335 - versionName "3.3.10" + versionCode 336 + versionName "3.3.11" } signingConfigs { release { @@ -53,6 +53,6 @@ android { dependencies { testImplementation 'junit:junit:4.12' - implementation 'com.github.axet:android-audio-library:1.0.171' // implementation project(':android-audio-library') + implementation 'com.github.axet:android-audio-library:1.0.172' // implementation project(':android-audio-library') assets('com.google.android.exoplayer:exoplayer:2.7.3') { exclude group: 'com.android.support' } } diff --git a/app/src/main/java/com/github/axet/audiorecorder/app/AudioApplication.java b/app/src/main/java/com/github/axet/audiorecorder/app/AudioApplication.java index b9adf48..c2fc88c 100644 --- a/app/src/main/java/com/github/axet/audiorecorder/app/AudioApplication.java +++ b/app/src/main/java/com/github/axet/audiorecorder/app/AudioApplication.java @@ -2,7 +2,6 @@ package com.github.axet.audiorecorder.app; import android.annotation.SuppressLint; import android.app.PendingIntent; -import android.content.ContentResolver; import android.content.Context; import android.content.Intent; import android.content.SharedPreferences; @@ -31,7 +30,6 @@ import com.github.axet.audiorecorder.BuildConfig; import com.github.axet.audiorecorder.R; import com.github.axet.audiorecorder.activities.MainActivity; -import java.io.File; import java.nio.ShortBuffer; import java.util.ArrayList; import java.util.Locale; diff --git a/app/src/main/res/values/strings.xml b/app/src/main/res/values/strings.xml index a8a47b4..f2be61a 100644 --- a/app/src/main/res/values/strings.xml +++ b/app/src/main/res/values/strings.xml @@ -27,7 +27,7 @@ Stereo - No folder view application installed + No folder view application is installed pause (hold by call) recording encoding @@ -45,32 +45,32 @@ Cancel Pause - Storage Path + Recordings Folder Sample Rate Encoding Output file formats (.wav, .m4a, ...) - Mode + Audio Channels Recording channels - Name Format - Pause During Calls + Filename Format + Pause During a Call Stop recording on answering and continue on hangup - Silence Mode - Put phone in \'silence mode\' during recording + Silent Mode + Enable \'silent mode\' during recording Lockscreen Controls - Show controls when phone is locked + Show the controls when the phone is locked Application Theme - Set application theme (dark / light) + Set the application theme (dark/light) Application Recordings - Encoding on Fly - Enabling encoding on fly disables editing, and crash recovery + Encoding on the Fly + Enabling encoding on the fly disables editing, and crash recovery pause (bluetooth disconnected) Search Save as WAV Auto close in (%1$d) Mic muted - Android Pie and above prevent idle background apps from using microphone. Please disable selinux or install previous android version! - Mic paused by OS, recording time is less then data recorded, check if you device supports background recording or it is fast enough for selected settings + Android 9 (Pie) and above prevent idle background apps from using the microphone. Please disable SeLinux or downgrade to an earlier Android release! + Mic was paused by Android, the recording time is shorter then the data recorded. Check if you device supports background recording or it is fast enough for the selected settings Start Recording Stop Recording diff --git a/build.gradle b/build.gradle index 42ee91b..772747b 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { google() } dependencies { - classpath 'com.android.tools.build:gradle:3.5.1' + classpath 'com.android.tools.build:gradle:3.5.2' classpath 'com.github.axet:gradle-android-dx:0.0.4' } }