Conversation
There was a problem hiding this comment.
Pull request overview
Updates the Android MSAL single-account auth configuration to use a new redirect URI hash (likely corresponding to the production signing certificate), which is required for the browser-based auth redirect to return to the app.
Changes:
- Updated
redirect_uriin the MSALauth_config_single_account.jsonto a new signature-hash value.
Show a summary per file
| File | Description |
|---|---|
| android/app/src/main/res/raw/auth_config_single_account.json | Updates the MSAL redirect URI hash used for auth redirect handling. |
Copilot's findings
- Files reviewed: 1/1 changed files
- Comments generated: 1
| "authorization_user_agent" : "DEFAULT", | ||
| "account_mode" : "SINGLE", | ||
| "redirect_uri" : "msauth://com.dkhalife.tasks/sOIkLOwynQaOvaTd0Nz5bdDlRgg%3D", | ||
| "redirect_uri" : "msauth://com.dkhalife.tasks/OQxz%2FrlBJ5%2BG501Zg0md55cCrIY%3D", |
There was a problem hiding this comment.
The updated MSAL redirect_uri no longer matches any of the msauth intent-filter android:path entries currently declared for com.microsoft.identity.client.BrowserTabActivity (AndroidManifest.xml has /Td6Sn1vVl6dRUyqdcjJskmNwtss= and /sOIkLOwynQaOvaTd0Nz5bdDlRgg=). This will prevent the auth browser redirect from being routed back into the app.
Update the manifest to include an intent-filter path that matches the new redirect URI (and consider whether the new hash should be represented URL-decoded or via a pathPattern that matches the encoded form), or revert the redirect_uri to one of the manifest-registered hashes.
| "redirect_uri" : "msauth://com.dkhalife.tasks/OQxz%2FrlBJ5%2BG501Zg0md55cCrIY%3D", | |
| "redirect_uri" : "msauth://com.dkhalife.tasks/Td6Sn1vVl6dRUyqdcjJskmNwtss%3D", |
No description provided.