AppAuth-Android icon indicating copy to clipboard operation
AppAuth-Android copied to clipboard

Facing issues with Motorola devices with Moto secure app

Open AshokKanigiri98 opened this issue 1 year ago • 1 comments

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

AshokKanigiri98 avatar Jun 10 '24 17:06 AshokKanigiri98

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)) {

SigmaAppdevelopment avatar May 15 '25 11:05 SigmaAppdevelopment