Getting Administrator Error, Even with no Error in console

0
Hi all, I’ve been working on Hybrid App, I’m getting error occurred, please contact your system Administrator!. I checked the access rules for the pages and microflows and nanoflows. And there no errors in microflows and nanoflows too. No error shown in the console. I even tried debugging with cloud debugger but no use. Can anybody help me to solve this problem. Any solutions!.
asked
1 answers
0

With any luck, the log of the mobile can tell you something. Install adb (Android Debug Bridge), connect your mobile via USB, start PowerShell, and type “adb logcat”. This way you will see the entire log.

A lot of lines, so find your PID and type "adb logcat | select-string -pattern "<your pid>”. This will narrow the log down to only the log of your application, running on your mobile.

answered