diff --git a/app/build.gradle b/app/build.gradle
index 05048a7..a5defeb 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -4,14 +4,14 @@ import com.android.build.OutputFile
android {
compileSdkVersion 25
- buildToolsVersion "27.0.1"
+ buildToolsVersion '27.0.3'
defaultConfig {
applicationId "com.github.axet.audiorecorder"
minSdkVersion 9
targetSdkVersion 23 // 24+ file:// unable to open
- versionCode 258
- versionName "3.2.1"
+ versionCode 259
+ versionName "3.2.2"
}
signingConfigs {
release {
@@ -53,7 +53,6 @@ android {
}
dependencies {
- compile fileTree(dir: 'libs', include: ['*.jar'])
- testCompile 'junit:junit:4.12'
- compile 'com.github.axet:android-audio-library:1.0.96' // compile project(':android-audio-library')
+ testImplementation 'junit:junit:4.12'
+ implementation 'com.github.axet:android-audio-library:1.0.97' // implementation project(':android-audio-library')
}
diff --git a/app/src/main/java/com/github/axet/audiorecorder/activities/RecordingActivity.java b/app/src/main/java/com/github/axet/audiorecorder/activities/RecordingActivity.java
index f76abf2..c642994 100644
--- a/app/src/main/java/com/github/axet/audiorecorder/activities/RecordingActivity.java
+++ b/app/src/main/java/com/github/axet/audiorecorder/activities/RecordingActivity.java
@@ -897,7 +897,7 @@ public class RecordingActivity extends AppCompatThemeActivity {
e = null;
}
} catch (RuntimeException e) {
- Error(e);
+ Post(e);
}
}
}
diff --git a/app/src/main/res/layout/content_main.xml b/app/src/main/res/layout/content_main.xml
index 9dfe430..80e9149 100644
--- a/app/src/main/res/layout/content_main.xml
+++ b/app/src/main/res/layout/content_main.xml
@@ -17,6 +17,7 @@
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
+ android:padding="2dp"
android:text="32G free ~ 3 hours left" />
@@ -47,7 +48,7 @@
android:layout_height="wrap_content"
android:padding="5dp"
android:text="@string/recording_list_is_empty"
- android:textAlignment="center">
+ android:textAlignment="center" />
+ android:paddingBottom="61dp" />
diff --git a/app/src/main/res/values-el/strings.xml b/app/src/main/res/values-el/strings.xml
index 7188c1b..e25cd2a 100644
--- a/app/src/main/res/values-el/strings.xml
+++ b/app/src/main/res/values-el/strings.xml
@@ -14,8 +14,8 @@
- Bluetooth
- - Λευκό Θέμα
- - Σκουρο
+ - Φωτεινό
+ - Σκοτεινό
- Μονοφωνικό (προεπιλογή)
@@ -48,11 +48,11 @@
Παύση κατά τις κλήσεις
Διακοπή εγγραφής στην απάντηση και συνέχεια μετά το τέλος της κλήσης
Αθόρυβο
- Κατά την εγγραφή το τηλέφωνο θα είναι στο \"αθόρυβο"
+ Κατά την εγγραφή το τηλέφωνο θα είναι στο \"αθόρυβο\"
Πλήκτρα ελέγχου Οθόνης Κλειδώματος
Εμφάνιση πλήκτρων ελέγχου όταν το τηλέφωνο είναι κλειδωμένο
Θέμα εφαρμογής
- Επιλογή θέματος εφαρμογής (σκούρο / ανοιχτό)
+ Επιλογή θέματος εφαρμογής (σκοτεινό / φωτεινό)
Εφαρμογή
Εγγραφές
Άμεση Κωδικοποίηση
diff --git a/build.gradle b/build.gradle
index b7b69e8..d2a26a2 100644
--- a/build.gradle
+++ b/build.gradle
@@ -6,7 +6,7 @@ buildscript {
google()
}
dependencies {
- classpath 'com.android.tools.build:gradle:3.0.1'
+ classpath 'com.android.tools.build:gradle:3.1.0'
}
}
@@ -19,7 +19,7 @@ allprojects {
}
task wrapper(type: Wrapper) {
- gradleVersion = '4.2.1'
+ gradleVersion = '4.6'
}
task clean(type: Delete) {