How can I generate a single .jar file with only my Android Test classes at src/androidTest?
The code I have is working when I run only the test class or the package, but I would like to be able to generate and push the .jar file containing all the tests and execute it via adb shell. (my project doesn't have any app source code)
I'm currently using Android Studio with Gradle.
Thanks