For all non-Windows platforms
For Windows
After installing the Proxie CA into the system profiles,
If you are debugging your own app and still have problems with HTTPS Decryption even when everything is correctly set up, you could try disabling ATS by appending the following keys to your app's Info.plist:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
Don't forget the turn ATS back on when releasing your app. For more information about ATS, visit Apple's documentation.