Device Pool - how to exclude 32 bit devices on Android

0

I have a pool definition for Android phones and I am getting Moto G7 Play devices moderately frequently of late and our app requires 64 bit devices and so fails to install. Need advice on how to avoid 32 bit devices.

asked 3 years ago223 views
1 Answer
0
Accepted Answer

Hi there,
Thank you for reaching out. Try creating a new device pool or updating your old one from the command line as follows:

[code]
$ aws --profile MY_PROFILE_NAME devicefarm create-device-pool --name "MY_POOL_NAME" --project-arn "arn:aws:devicefarm:us-west-2:MY_ACCOUNT_ID:project:MY_PROJECT_ID" --rules '[
{
"attribute": "FLEET_TYPE",
"operator": "EQUALS",
"value": ""PUBLIC""
},
...
MY_RULES_GO_HERE
...
{
"attribute": "MODEL",
"operator": "NOT_IN",
"value": "["Moto G7 Play"]"
}
]'

[/code]

For some reason, the forums are replacing my single-quotes with " &#39 ", but the idea is there. Let me know your thoughts.

Thanks,
Jon

Edited by: JonS-AWS on May 6, 2021 9:09 PM

AWS
answered 3 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions