Open
Description
I am using openId for authentication in my android app [using WebView] Facing issues with login only with Moto Edge 50 pro devices suddenly
After a long research, found that Phishing detection feature inside Moto secure app in Motorola edge 50 pro is blocking authentication callbacks
When i disable Phishing detection feature, everything is working fine
There is no option to add or edit trusted URL's in Moto secure app, Is there any way to whitelist the app url's ?
Have anyone came across this issue, if so any help would be helpful
Thanks in advance
Activity
SigmaAppdevelopment commentedon May 15, 2025
Making this change in AuthorizationManagementActivitity fixes crash:
private void extractState(Bundle state) {
if (state == null) {
to
private void extractState(Bundle state) {
if (state == null || state.size() == 1 && state.getBoolean("motorola.intent.extra.PHISHING_CHECKED", false)) {