After reading documentation and watching official Google tutorials on instant apps I've found that it is required to have at least one feature module, "minimal module" (the module with shared code) and a full app module. Official manual explains how to create these modules in one workspace, intended to be used for a single app.
However, in our case we have a lot of different apps in single Android Studio project.
I can create some common module ("minimal module" according to official naming, as I understand docs) with support library and some shared code. Actually, this shared code is really minimal and technically the only common code base of a reasonably large size will be support library (instant apps won't event share any common resources other than launcher icon).
Is it possible to configure gradle to generate instant app for each app in this project?