AASA Matching Algorithm

I'm working on developing an AASA for an app that may be built by multiple teams, and I want to create a universal link that opens the app regardless of which team's app is installed on iOS. Right now the AASA is

{
    "applinks":{"apps":[],"details":
        [
            {"paths":["/abc/*"],"appID":"TEAM1.BUNDLE_ID"},
            {"paths":["/abc/*"],"appID":"TEAM2.BUNDLE_ID"},
        ]
    }
}

The AASA works fine for TEAM1, but when the app is built with TEAM2, it does not work (instead redirects to the appstore). I checked the swcutil.txt and it confirms that the is indeed not linked to any domains when built from TEAM2. Is there a known fix for this, or a potential cause?

AASA Matching Algorithm
 
 
Q