From 12fe5bba7b692338213b5057acf86327143c5c65 Mon Sep 17 00:00:00 2001 From: Alexey Kuznetsov Date: Mon, 4 Nov 2019 20:41:45 +0300 Subject: [PATCH 1/3] cleanups english, thanks to @birdie-gitlab --- app/src/main/res/values/strings.xml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) 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 From f239e2682072639a633e21f9b38e9063e6eab308 Mon Sep 17 00:00:00 2001 From: Alexey Kuznetsov Date: Sat, 16 Nov 2019 09:59:08 +0300 Subject: [PATCH 2/3] fix code cache assets names --- app/build.gradle | 2 +- .../com/github/axet/audiorecorder/app/AudioApplication.java | 2 -- build.gradle | 2 +- 3 files changed, 2 insertions(+), 4 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index ec74237..53fe2e5 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -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/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' } } From cbe1e10fc3510a02710404a6c1da843b338b3261 Mon Sep 17 00:00:00 2001 From: Alexey Kuznetsov Date: Sat, 16 Nov 2019 09:59:16 +0300 Subject: [PATCH 3/3] Bump version audiorecorder-3.3.11 --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 53fe2e5..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 {