Universal App Link don't open correct app in QR Control Center

Hi everyone!

I have some issue with universal links. I follow this document from App Search Programming Guide

And I create 3 apps associated with the same page and settings. It works perfectly when I read the QR code with native camera.

But when I read a QR code with the QR Code Scanner from Control Center always opens App1

Example: I select App3

Show App3 Icon

But open App1!!!

I configure my AASA file something like this:

`{
  "applinks": {
    "apps": [],
    "details": [{
        "appID": "TeamId.bundleApp1",
        "paths": [
          "*"
        ]
      },
      {
        "appID": "TeamId.bundleApp2",
        "paths": [
          "*"
        ]
      },
      {
        "appID": "TeamId.bundleApp3",
        "paths": [
          "*"
        ]
      }
    ]
  }
}`

Thanks!!!