Hi @tranhuya68,
Those versions seem to be compatible. Based on your error log, you got 2 errors:
Provisioning profile “xxx_uat_development” has app ID “com.xxxxx.xxxx-uat”, which does not match the bundle ID “com.facebook.WebDriverAgentRunner.xctrunner”
You’re trying to build WebDriverAgentRunner, which has the bundle ID:
com.facebook.WebDriverAgentRunner.xctrunner. But your provisioning profile is tied to a different app: com.xxxxx.xxxx-uat
doesn't match the entitlements file’s value for the application-identifier entitlement
This means the provisioning profile and entitlements aren’t aligned.
The workaround I suggest is to create a Proper Provisioning Profile for WebDriverAgent. Read more here:
and similar discussion:
Hope this can help