I have my buyer
, seller
module and a common
module. Few layouts which are used in both buyer
and seller
module are placed in common
module.
common -> layout_toolbar.xml
buyer -> activity_sell.xml ->
<LinearLayout>
<include layout="@layout/layout_toolbar" /> <!-- layout_toolbar.xml is from common module -->
</LinearLayout>
seller -> activity_buy.xml ->
<RelativeLayout>
<include layout="@layout/layout_toolbar" /> <!-- layout_toolbar.xml is from common module -->
</RelativeLayout>
buyer -> BuyActivity.kt
toolbar.title = "Buy"
seller -> SellActivity.kt
toolbar.title = "Sell"
Everything works fine in IDE,
- My layout preview shows properly by resolving the include tag and inflating in the IDE's layout preview.
- My kotlin files also properly resolves the toolbar reference and doesn't show any problem.
But whenever I try to build the app, it gives me the compiler error:
Unresolved reference: toolbar <-- Id of the toolbar inside layout_toolbar.xml
If IDE can resolve the dependencies properly, why can't the gradle build? Is there anything I am doing wrong?
Please note that common
module is added as implementation
in other two modules. But I have tried with api
which doesn't work too.