Vijay Prakash
Vijay Prakash

Reputation: 111

Device not compatible in google cloud test lab

I am testing my application apk on cloud test lab. It's working fine on some devices, but the other devices are showing:

Incompatible device/API level combination.

I am not getting what is the problem.
I attached an image below. How to solve these issues?

enter image description here

Upvotes: 4

Views: 1882

Answers (3)

yasd
yasd

Reputation: 956

Though the original question is a while ago the problem still exists: How can I find out which physical device can be combined with which api level in Firebase test lab.

AndroidStudio 3.3.2 allows to choose every combination and your tests fails with

Skipped triggering the test execution: Incompatible device/OS combination

if the chosen combination is not valid.

The only way I've found is: Start a test in the Firebase console (in your browser). After (!) uploading your apk and test apk the UI brings up a list of available physical devices and the api levels usable on them.

Upvotes: 2

ivan.panasiuk
ivan.panasiuk

Reputation: 1259

In your example, its tell you that eg. Galaxy S4 has API level 19, and it could be tested with API 19. But, the same device, Galaxy S4 could not be tested on API level 21, 22 and the test is skipped.

Upvotes: 0

Alex
Alex

Reputation: 419

You can ignore that messages because the test matrix was created with necessary configurations. The physical Galaxy S4 has API level 19 and you can see in the second line right configuration. Other API levels not supported by S4 so Cloud Test Lab displayed a message for you. You should care the situation when selected devices doesn't meet all selected API levels.

Upvotes: 1

Related Questions