mp3agic
mp3agic copied to clipboard
EncodedText toString() is Reserved By Kotlin
The function should be renamed to something like:
fun toEncodedString(): String {
return try {
bytesToString(value, characterSetForTextEncoding(textEncoding))
} catch (e: CharacterCodingException) {
""
}
}
Otherwise, Kotlin uses the .toString() function from Android OS resulting in a string "Java.function.etc"