I'm new to QT and the arcgis sdk. I've set up my system on Windows 10 and am unable to get a map. The ESRI arcgis sample programs run without any errors, but my mapview is always a grey screen. Reading other posts points to an issue with OpenSSL, but I've reached my expertise limit on what could be wrong with my setup.
To check OpenSSL, I added the following bit of code in main.cpp with the resulting output:
qDebug() << "build-time OpenSSL version:" << QSslSocket::sslLibraryBuildVersionString();
qDebug() << "run-time OpenSSL version:" << QSslSocket::sslLibraryVersionString();
qDebug()<<"QSslSocket="<<QSslSocket::sslLibraryBuildVersionString();
build-time OpenSSL version: "OpenSSL 1.1.1g 21 Apr 2020"
run-time OpenSSL version: "OpenSSL 1.1.1k 25 Mar 2021"
QSslSocket= "OpenSSL 1.1.1g 21 Apr 2020"
Any ideas on what could be wrong with my setup or what to check next would be greatly appreciated. I'm out of ideas.