Generate coverage for other modules
问题 My project structure is as follows: :app , :core . :app is the Android application project, and it depends on :core which has all the business logic. I have Espresso tests for :app , and I am able to run and get coverage report thanks to all the questions and guides out there. But the coverage is only for code in :app . How do I get coverage for all projects ( :app and :core ) resulting from my Espresso instrumentation tests? Is this even possible? Any help is greatly appreciated. 回答1: Even