I'm using version 1.4.0 of the orchestrator. When...
# android
d
I'm using version 1.4.0 of the orchestrator. When I launch my test on my Pixel 2 (real device) all test run as expected. When I launch the same tests on my Pixel 4 (real device) no test is found / run. The Pixel 2 is running on Android 11 (API level 30) and the Pixel 4 on Android 13 (API level 33). My test only limit SDK level above 23 so they should both run the same tests. If I remove the
Copy code
execution = "ANDROIDX_TEST_ORCHESTRATOR"
all test run but they fail (on both devices) because I need
Copy code
testInstrumentationRunnerArguments += "clearPackageData" to "true"
I'd appreciate any suggestion. Thanks EDIT: nevermind, apparently I had to use a newer / non stable version of orchestrator (and/or) runner