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.

질문됨 3년 전229회 조회
1개 답변
0
수락된 답변

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
답변함 3년 전

로그인하지 않았습니다. 로그인해야 답변을 게시할 수 있습니다.

좋은 답변은 질문에 명확하게 답하고 건설적인 피드백을 제공하며 질문자의 전문적인 성장을 장려합니다.

질문 답변하기에 대한 가이드라인

관련 콘텐츠