My project (A) is dependent on two library projects (B & C). B & C have java sources & resources (layouts, drawables, values).
If I want to build A, I need to include B & C in the Android.mk of A.
Can anyone help me on this?
My project (A) is dependent on two library projects (B & C). B & C have java sources & resources (layouts, drawables, values).
If I want to build A, I need to include B & C in the Android.mk of A.
Can anyone help me on this?
Add the Projects (B & C) to your product's
PRODUCT_PACKAGES +=
list, so they will be built for sure.