AlexaAndroid
AlexaAndroid copied to clipboard
sendPlaybackStartedEvent doesnt compile
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,
changing that line to this allows compile:
alexaManager.sendPlaybackStartedEvent(item, 0,requestCallback);