2
0
mirror of https://github.com/KDE/kdeconnect-android synced 2025-08-22 01:51:47 +00:00

Migrate VolumeKeyListener to Kotlin

This commit is contained in:
TPJ Schikhof 2024-12-29 10:54:01 +00:00 committed by Albert Vaca Cintora
parent 6a58cc444e
commit 172822239c

View File

@ -3,14 +3,9 @@
*
* SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
*/
package org.kde.kdeconnect.Plugins.MprisPlugin
package org.kde.kdeconnect.Plugins.MprisPlugin;
public interface VolumeKeyListener {
void onVolumeUp();
void onVolumeDown();
interface VolumeKeyListener {
fun onVolumeUp()
fun onVolumeDown()
}