This repository has been archived by the owner on Sep 19, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
On_audio_edit deprecated #23
Comments
update dependencies by updating these 2 files:
and lastly, this kotlin code needs to be updated:
package com.lucasjosino.on_audio_edit.utils
import android.util.Log
fun warningSizeCall(sizeValue: Long, data: String) {
when {
sizeValue >= 13 -> {
Log.e("on_audio_warning", "-------------------------------------------------------------------------------------")
Log.e("on_audio_wn_size", "[$data] size is bigger than 13 MB - [$sizeValue MB]")
Log.e("on_audio_warning", "-------------------------------------------------------------------------------------")
}
sizeValue >= 10 -> {
Log.e("on_audio_warning", "[$data] size is bigger than 10 MB - [$sizeValue MB]")
}
sizeValue >= 6 -> {
Log.i("on_audio_warning", "[$data] size is bigger than 6 MB - [$sizeValue MB]")
}
else -> {
}
}
} |
I tried what you told me and it didn't work. Thank you very much for taking the time to answer me!! (: |
alr could u try my branch and check if it's working ? it's working fine for me, if ur getting any errors post it here pls
|
Hi, sorry for the delay in responding. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello, when I start the debugging of my app I get the following error:
The Android Gradle plugin supports only Kotlin Gradle plugin version 1.5.20 and higher.
The following dependencies do not satisfy the required version:
project ':on_audio_edit' -> org.jetbrains.kotlin:kotlin-gradle-plugin:1.4.32
The text was updated successfully, but these errors were encountered: