KDouble extension
Superb the new futures by the KDouble extension.
THE BELL - Looking forward with high interest to get some more ringtones.
Or there is any way to add my ringtones?

Thanks!
-
Ok, I have dig a little more in the extension (apk) .....
Actually is not playing a file as I thought (used to from other SO's).
Is a pattern of beeps (certain duration, pause etc.) as you can see below, so I have to figure out a way to customize this and change it in the file.
@Serializable
enum class BellBeepPattern(val displayName: String, val tones: List<PlayBeepPattern.Tone>) {BELL4("Medium", listOf(
PlayBeepPattern.Tone(3_800, 900),
PlayBeepPattern.Tone(0, 300),
PlayBeepPattern.Tone(3_800, 1000),
)),
BELL5(
"High", listOf(
PlayBeepPattern.Tone(3_550, 900),
PlayBeepPattern.Tone(0, 300),
PlayBeepPattern.Tone(3_550, 1000),
)),
}
@Serializable
enum class KarooKey(val action: KarooEffect, val label: String) {
BELL4(PlayBeepPattern(BellBeepPattern.BELL4.tones), "Medium"),
BELL5(PlayBeepPattern(BellBeepPattern.BELL5.tones), "High"),!! STILL DIGGING :)
Please sign in to leave a comment.
Comments
5 comments