updating commons

This commit is contained in:
tibbi 2023-05-07 18:43:22 +02:00
parent bbfec85d71
commit bada2ba6bd
3 changed files with 5 additions and 4 deletions

View File

@ -63,7 +63,7 @@ android {
}
dependencies {
implementation 'com.github.SimpleMobileTools:Simple-Commons:b1f0bf8dc1'
implementation 'com.github.SimpleMobileTools:Simple-Commons:dfe84c0ee2'
implementation 'org.greenrobot:eventbus:3.3.1'
implementation 'com.github.Armen101:AudioRecordView:1.0.4'
implementation 'androidx.documentfile:documentfile:1.0.1'

View File

@ -1,7 +1,7 @@
package com.simplemobiletools.voicerecorder.activities
import android.content.Intent
import com.simplemobiletools.commons.extensions.toast
import com.simplemobiletools.commons.dialogs.PermissionRequiredDialog
import com.simplemobiletools.voicerecorder.R
import com.simplemobiletools.voicerecorder.services.RecorderService
@ -26,7 +26,7 @@ class BackgroundRecordActivity : SimpleActivity() {
}
}
} else {
toast(R.string.no_post_notifications_permissions)
PermissionRequiredDialog(this, R.string.allow_notifications_voice_recorder)
}
}
}

View File

@ -7,6 +7,7 @@ import android.os.Handler
import android.os.Looper
import android.util.AttributeSet
import com.simplemobiletools.commons.activities.BaseSimpleActivity
import com.simplemobiletools.commons.dialogs.PermissionRequiredDialog
import com.simplemobiletools.commons.extensions.*
import com.simplemobiletools.commons.helpers.isNougatPlus
import com.simplemobiletools.voicerecorder.R
@ -51,7 +52,7 @@ class RecorderFragment(context: Context, attributeSet: AttributeSet) : MyViewPag
if (granted) {
toggleRecording()
} else {
context.toast(R.string.no_post_notifications_permissions)
PermissionRequiredDialog(context as BaseSimpleActivity, R.string.allow_notifications_voice_recorder)
}
}
}