How to Debug/troubleshoot outlook addin for mobile

40 Views Asked by At

I have recently added MobileFormFactor in manifest.xml. If we load a custom addin in outlook client, question is how can we debug this addin when using android mobile outlook client in windows

I tried fiddler, I want to see office js calls happening when using addin in outlook mobile

1

There are 1 best solutions below

0
Eugene Astafiev On

There is no built-in mechanism for debugging add-ins on Android. You can treat Office web add-ins like a regular web applications and use any remote JavaScript debugging techniques available for Android. For example, take a look at RemoteJS, TrackJS or JS Console.

Also see Node.js debugging in VS Code if you are building your add-in on top of NodeJS.