Skip to content

Commit

Permalink
[minor] ENGMT-2070: Update app links domains
Browse files Browse the repository at this point in the history
The existing configured domains are no longer configured for any app IDs in Branch. These domains are configured for the four apps that Branch Link Simulator can be set to.
  • Loading branch information
mack-branch committed Jan 21, 2025
1 parent f8c974d commit e026280
Showing 1 changed file with 64 additions and 7 deletions.
71 changes: 64 additions & 7 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,23 +33,80 @@
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>

<!-- Branch App Links - Live App -->
<!-- Branch App Links -->

<!-- Live Prod App -->
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" android:host="prod-freedom.branchcustom.xyz" />
<data android:scheme="https" android:host="prod-freedom.app.link" />
<data android:scheme="https" android:host="prod-freedom-alternate.app.link" />
</intent-filter>

<!-- Test Prod App -->
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" android:host="prod-freedom.test-app.link" />
<data android:scheme="https" android:host="prod-freedom-alternate.test-app.link" />
</intent-filter>

<!-- Live Prod AC App -->
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" android:host="prod-ac-sandbox.app.link" />
<data android:scheme="https" android:host="prod-ac-sandbox-alternate.app.link" />
</intent-filter>

<!-- Test Prod AC App -->
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" android:host="prod-ac-sandbox.test-app.link" />
<data android:scheme="https" android:host="prod-ac-sandbox-alternate.test-app.link" />
</intent-filter>

<!-- Live Stage App -->
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" android:host="stage-freedom.branchcustom.xyz" />
<data android:scheme="https" android:host="stage-freedom.branchbeta.link" />
<data android:scheme="https" android:host="stage-freedom-alternate.branchbeta.link" />
</intent-filter>

<!-- Test Stage App -->
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" android:host="stage-freedom.test-branchbeta.link" />
<data android:scheme="https" android:host="stage-freedom-alternate.test-branchbeta.link" />
</intent-filter>

<!-- Live Stage AC App -->
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" android:host="allergics.org" />
<data android:scheme="https" android:host="branchlinksimulator.app.link" />
<data android:scheme="https" android:host="branchlinksimulator-alternate.app.link" />
<data android:scheme="https" android:host="stage-ac-sandbox.branchbeta.link" />
<data android:scheme="https" android:host="stage-ac-sandbox-alternate.branchbeta.link" />
</intent-filter>

<!-- Branch App Links - Test App -->
<!-- Test Stage AC App -->
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<data android:scheme="https" android:host="branchlinksimulator.test-app.link" />
<data android:scheme="https" android:host="branchlinksimulator-alternate.test-app.link" />
<data android:scheme="https" android:host="stage-ac-sandbox.test-branchbeta.link" />
<data android:scheme="https" android:host="stage-ac-sandbox-alternate.test-branchbeta.link" />
</intent-filter>
</activity>
<!-- Branch init -->
Expand Down

0 comments on commit e026280

Please sign in to comment.