Step by step instant games

Hello,

Are there any step by step tutorials on how to create an instant game with Defold?

I am trying to use the tic tac toe example but I find it too difficult. While I have created games in Unity I find it difficult to setup the instant game in Defold.

A few examples…
While the tutorial tells me I should include fbinstant.*, when I write require "fbinstant.*", I get an error that it cannot find the .lua file. Why is there no fbinstant.lua file?
If I include require "fbinstant/utils/mock", it will at runtime tell me that “Extension fbinstant is not supported”.
And in the tic tac toe example there are 2 libraries: monarch and gooey, which are not explained.
In ticktactoe.script, fbinstant is used in on_message. How is access to this gained? Via “fbinstant.utils.mock”?
After the fbinstant.start_game is started successfully, monarch functions are called, which then display screens. Why is monarch used here if in a simpler example, disabling/enabling game objects would work as well?

Thanks!