AlexaAndroid icon indicating copy to clipboard operation
AlexaAndroid copied to clipboard

sendPlaybackStartedEvent doesnt compile

Open amigax opened this issue 8 years ago • 1 comments

In BaseActivity theres this method:

private void sendPlaybackStartedEvent(AvsItem item){ alexaManager.sendPlaybackStartedEvent(item, null); Log.i(TAG, "Sending SpeechStartedEvent"); }

but sendPlaybackStartedEvent has a different signature so this wont compile,

amigax avatar Jul 02 '17 14:07 amigax

changing that line to this allows compile:

alexaManager.sendPlaybackStartedEvent(item, 0,requestCallback);

amigax avatar Jul 02 '17 14:07 amigax