Madalin Marian Porojan

Results 2 comments of Madalin Marian Porojan

I think it is an issue from the AppAuth Android sdk. Changing the following lines fixed my problem, but these modifications do not persist on a new call of npm...

Solved by using the following workaround on Android: ```typescript if (additionalParams) { if (Capacitor.getPlatform() === PLATFORM.android) { if (UI_LOCALES in additionalParams) { config.authorizationBaseUrl = `${config.authorizationBaseUrl}?ui_locales=${additionalParams.ui_locales}&`; } } else { config.additionalParameters...