Esri/dynamic-situational-awareness-qt

c->cancelWithError(title, html);

pengguanjun opened this issue · 2 comments

I assume this is a problem.

AuthenticationController.cpp 296 c->cancelWithError(title, html);

C:\arcgis\1\dynamic-situational-awareness-qt\arcgis-runtime-toolkit-qt\uitools\cpp\Esri\ArcGISRuntime\Toolkit\AuthenticationController.cpp:296:
error: no member named 'cancelWithError' in 'Esri::ArcGISRuntime::AuthenticationChallenge'

图片

Good find. You are right, this is a problem with our build instructions.

We've just released ArcGISRuntime 100.11, but DSA is building against ArcGIS 100.10.

The toolkit module you are using expects 100.11.

There is an easy workaround here. Replace this instruction:

git clone https://github.com/Esri/arcgis-runtime-toolkit-qt.git

with this:

git clone --branch release/100.10.0 https://github.com/Esri/arcgis-runtime-toolkit-qt.git

I'll update the instructions to be more specific.

Thx, handsome man.
It works.
git clone --branch release/100.10.0 https://github.com/Esri/arcgis-runtime-toolkit-qt

图片