just like all of you, I've made MyFirst Instant App from AndroidInstantAppDemo, but what if I want to add more activities into my app?
I want to provide multiple links for them.
Should I simply add all of those activities under app
module and provide dependencies{... implementation project (":base") }
in build.gradle
.
Along with that, adding the different path
with same host
address in .manifest
file.
Or
Put all the activities under base
module only.
If yes (2nd options), does that mean that we should transfer data from app
module to base
module, in order to add InstantApp
functionality into our project.
I think I'm not very familiar with all three modules of them, and the PROJECT STRUCTURE just provided an overview of these modules. Can anyone help?