From 00406347be62c9260b266bdaa08c016f88b72a69 Mon Sep 17 00:00:00 2001 From: Alexey Kuznetsov Date: Thu, 25 Oct 2018 13:50:45 +0300 Subject: [PATCH 1/2] fix show activity --- .../github/axet/audiorecorder/services/RecordingService.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/src/main/java/com/github/axet/audiorecorder/services/RecordingService.java b/app/src/main/java/com/github/axet/audiorecorder/services/RecordingService.java index effa8bc..f5e5760 100644 --- a/app/src/main/java/com/github/axet/audiorecorder/services/RecordingService.java +++ b/app/src/main/java/com/github/axet/audiorecorder/services/RecordingService.java @@ -182,7 +182,7 @@ public class RecordingService extends Service { text = AudioApplication.formatFree(this, free, sec); builder.setViewVisibility(R.id.notification_record, View.VISIBLE); builder.setViewVisibility(R.id.notification_pause, View.GONE); - PendingIntent main = PendingIntent.getActivity(this, 0, new Intent(this, RecordingService.class), PendingIntent.FLAG_UPDATE_CURRENT); + PendingIntent main = PendingIntent.getActivity(this, 0, new Intent(this, MainActivity.class), PendingIntent.FLAG_UPDATE_CURRENT); builder.setContentIntent(main); } else { builder = new RemoteNotificationCompat.Builder(this, R.layout.notifictaion); From 4b6762080e0300e3c8c5107ee78bdc5b23a79e4c Mon Sep 17 00:00:00 2001 From: Alexey Kuznetsov Date: Thu, 25 Oct 2018 13:50:55 +0300 Subject: [PATCH 2/2] Bump version audiorecorder-3.2.25 --- app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 67a6b5b..76b722a 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -10,8 +10,8 @@ android { applicationId "com.github.axet.audiorecorder" minSdkVersion 9 targetSdkVersion 23 // 24+ file:// unable to open - versionCode 282 - versionName "3.2.24" + versionCode 283 + versionName "3.2.25" } signingConfigs { release {