I have created couple of Alexa state handler and one default handler.
All of these are registered using alexa.registerHandlers(State1Handlers, State2Handlers,defaultHandler);
I am using some built-in Intents like "repeat" which will behave same in all my different states. Hence I added it to the Default handler. However when I invoke that intent, the app fails saying it cannot find that intent.
I thought I could add intents with default behaviors in default handler and other state handler could use it ( something similar to using inheritance) but it does not look like it. Any ideas ?