Is there a way to create a universal APK for instrumented tests? I wanted to run the whole test suite on Firebase Test Lab but it seems tedious to upload one APK for each dynamic feature module's test APK.
For the app, you can do a packageVariantUniversalApk
but you I can't seem to find any for the test APK.
Any help would be greatly appreciated.
I've scoured the internet for an answer to this question and got here. It would seem that no, there is no way to create an universal androidTest APK from individual feature modules' instrumentation tests.
I'll probably look into creating an instrumentation test only library that depends on my app- and feature modules. https://developer.android.com/studio/test#use_separate_test_modules_for_instrumented_tests If I'm not mistaken, that should enable me to build a single test-APK that runs all the tests against the universal APK.^That didn't work due to some manifest issues:
I guess we're stuck with running the tests module by module...