feat: Mark currently playing song in SongHorizontalAdapter

This commit is contained in:
Jaime García 2025-09-22 00:15:52 +02:00
parent c62d2ace4d
commit 52ba783a90
No known key found for this signature in database
GPG key ID: BC4E5F71A71BDA5B
10 changed files with 162 additions and 0 deletions

View file

@ -0,0 +1,8 @@
package com.cappielloantonio.tempo.interfaces;
import androidx.annotation.Keep;
@Keep
public interface MediaSongIdCallback {
default void onRecovery(String id) {}
}