|
|
|
|
|
by kmeisthax
2 days ago
|
|
Not only that, but the iOS and Android APIs for HTTP requests make it really difficult to accidentally use unencrypted HTTP: * By default, only secure connections are allowed * You have to enumerate allowed exceptions to this policy in your app manifest XML / Info.plist * Exceptions are only permitted for specific use cases where mandatory encryption is infeasible, like browsers, podcast players, embedded device clients (which will also require the local network access permission), etc. If you're shipping a banking app and you exempt your own site from encryption, App Review will tear you a new one. |
|