Unauthorized access to libcrypto.so/libssl.so even though not using SSL
Solved
Mobile and Embedded
-
Hello, I've been unable to find an answer to this question so I hope someone more knowledgeable of such things can help out. I have an app that uses QNetworkAccessManager/QNetworkRequest that never requests via https or connects to server encrypted. Yet I get an error popup on Nougat warning me about unauthorized access.
Is there a way to tell Qt that I'm not using SSL and that it should never touch it when I'm using the network API?
Thanks for any help
-
Hi,
you can configure i.e. build Qt with the option-no-openssl
. Then Qt network classes compile without SSL capabilities.
On the other hand, you should better find the reason for the warning.
-Michael. -
Thanks. Path of least resistance was build OpenSSL for Android and deploy with our app.
2/3