mpd/android/app/src/main/aidl/org/musicpd/IMainCallback.aidl
Colin Edwards 324bd95c91 android: Move logging into it's own repository class.
Logs will be maintained and appended even when the main UI is not bound to the service.

This also lets us log without filling a Handler with a bunch of messages we might just throw away anyway.
2024-01-04 17:44:49 -06:00

9 lines
126 B
Plaintext

package org.musicpd;
interface IMainCallback
{
void onStarted();
void onStopped();
void onError(String error);
}