Мой logcat залит:
D/ClClient: Not sending keepalive. Current connection state=STOPPED.
D/ClClient: Not sending keepalive. Current connection state=STOPPED.
D/ClClient: Not sending keepalive. Current connection state=STOPPED.
D/ClClient: Not sending keepalive. Current connection state=STOPPED.
Что это значит?
У меня есть служба, которая возвращает START_STICKY в OnStartCommand:
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
//Request audio focus
if (!requestAudioFocus()) {
//Could not gain focus
stopSelf();
}
//Handle Intent action from MediaSession.TransportControls
handleIncomingActions(intent);
return START_STICKY;
}
Является ли проблема соединением с моей службой или чем-то еще?
Спасибо,