Skip to content

Commit e026280

Browse files
committed
[minor] ENGMT-2070: Update app links domains
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.
1 parent f8c974d commit e026280

File tree

1 file changed

+64
-7
lines changed

1 file changed

+64
-7
lines changed

app/src/main/AndroidManifest.xml

Lines changed: 64 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -33,23 +33,80 @@
3333
<category android:name="android.intent.category.BROWSABLE" />
3434
</intent-filter>
3535

36-
<!-- Branch App Links - Live App -->
36+
<!-- Branch App Links -->
37+
38+
<!-- Live Prod App -->
39+
<intent-filter android:autoVerify="true">
40+
<action android:name="android.intent.action.VIEW" />
41+
<category android:name="android.intent.category.DEFAULT" />
42+
<category android:name="android.intent.category.BROWSABLE" />
43+
<data android:scheme="https" android:host="prod-freedom.branchcustom.xyz" />
44+
<data android:scheme="https" android:host="prod-freedom.app.link" />
45+
<data android:scheme="https" android:host="prod-freedom-alternate.app.link" />
46+
</intent-filter>
47+
48+
<!-- Test Prod App -->
49+
<intent-filter android:autoVerify="true">
50+
<action android:name="android.intent.action.VIEW" />
51+
<category android:name="android.intent.category.DEFAULT" />
52+
<category android:name="android.intent.category.BROWSABLE" />
53+
<data android:scheme="https" android:host="prod-freedom.test-app.link" />
54+
<data android:scheme="https" android:host="prod-freedom-alternate.test-app.link" />
55+
</intent-filter>
56+
57+
<!-- Live Prod AC App -->
58+
<intent-filter android:autoVerify="true">
59+
<action android:name="android.intent.action.VIEW" />
60+
<category android:name="android.intent.category.DEFAULT" />
61+
<category android:name="android.intent.category.BROWSABLE" />
62+
<data android:scheme="https" android:host="prod-ac-sandbox.app.link" />
63+
<data android:scheme="https" android:host="prod-ac-sandbox-alternate.app.link" />
64+
</intent-filter>
65+
66+
<!-- Test Prod AC App -->
67+
<intent-filter android:autoVerify="true">
68+
<action android:name="android.intent.action.VIEW" />
69+
<category android:name="android.intent.category.DEFAULT" />
70+
<category android:name="android.intent.category.BROWSABLE" />
71+
<data android:scheme="https" android:host="prod-ac-sandbox.test-app.link" />
72+
<data android:scheme="https" android:host="prod-ac-sandbox-alternate.test-app.link" />
73+
</intent-filter>
74+
75+
<!-- Live Stage App -->
76+
<intent-filter android:autoVerify="true">
77+
<action android:name="android.intent.action.VIEW" />
78+
<category android:name="android.intent.category.DEFAULT" />
79+
<category android:name="android.intent.category.BROWSABLE" />
80+
<data android:scheme="https" android:host="stage-freedom.branchcustom.xyz" />
81+
<data android:scheme="https" android:host="stage-freedom.branchbeta.link" />
82+
<data android:scheme="https" android:host="stage-freedom-alternate.branchbeta.link" />
83+
</intent-filter>
84+
85+
<!-- Test Stage App -->
86+
<intent-filter android:autoVerify="true">
87+
<action android:name="android.intent.action.VIEW" />
88+
<category android:name="android.intent.category.DEFAULT" />
89+
<category android:name="android.intent.category.BROWSABLE" />
90+
<data android:scheme="https" android:host="stage-freedom.test-branchbeta.link" />
91+
<data android:scheme="https" android:host="stage-freedom-alternate.test-branchbeta.link" />
92+
</intent-filter>
93+
94+
<!-- Live Stage AC App -->
3795
<intent-filter android:autoVerify="true">
3896
<action android:name="android.intent.action.VIEW" />
3997
<category android:name="android.intent.category.DEFAULT" />
4098
<category android:name="android.intent.category.BROWSABLE" />
41-
<data android:scheme="https" android:host="allergics.org" />
42-
<data android:scheme="https" android:host="branchlinksimulator.app.link" />
43-
<data android:scheme="https" android:host="branchlinksimulator-alternate.app.link" />
99+
<data android:scheme="https" android:host="stage-ac-sandbox.branchbeta.link" />
100+
<data android:scheme="https" android:host="stage-ac-sandbox-alternate.branchbeta.link" />
44101
</intent-filter>
45102

46-
<!-- Branch App Links - Test App -->
103+
<!-- Test Stage AC App -->
47104
<intent-filter android:autoVerify="true">
48105
<action android:name="android.intent.action.VIEW" />
49106
<category android:name="android.intent.category.DEFAULT" />
50107
<category android:name="android.intent.category.BROWSABLE" />
51-
<data android:scheme="https" android:host="branchlinksimulator.test-app.link" />
52-
<data android:scheme="https" android:host="branchlinksimulator-alternate.test-app.link" />
108+
<data android:scheme="https" android:host="stage-ac-sandbox.test-branchbeta.link" />
109+
<data android:scheme="https" android:host="stage-ac-sandbox-alternate.test-branchbeta.link" />
53110
</intent-filter>
54111
</activity>
55112
<!-- Branch init -->

0 commit comments

Comments
 (0)