I have an app with a few modules. In my base
module I am using
implementation "android.arch.lifecycle:extensions:$lifecycle_version"
and the app runs with no problem but when I switch to
api "android.arch.lifecycle:extensions:$lifecycle_version"
android studio shows the error: Default Activity not found
. Do I need to include the implementation in every module or is it possible to include the import in the base module?