<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Qml module not found  Esri.ArcGISRuntime.Toolkit 100.14 in Qt Maps SDK Questions</title>
    <link>https://community.esri.com/t5/qt-maps-sdk-questions/qml-module-not-found-esri-arcgisruntime-toolkit/m-p/1216867#M4752</link>
    <description>&lt;P&gt;Thanks for answering&amp;nbsp;&lt;A href="https://community.esri.com/t5/user/viewprofilepage/user-id/305812" target="_self"&gt;&lt;SPAN class=""&gt;Gela&lt;/SPAN&gt;&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Not found Toolkit problem was solved but I can't build my app. Here is problems below in picture.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="toolkit.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/52376iB1BD8B05CD3725B5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="toolkit.png" alt="toolkit.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Wed, 28 Sep 2022 09:01:12 GMT</pubDate>
    <dc:creator>tanerkoka</dc:creator>
    <dc:date>2022-09-28T09:01:12Z</dc:date>
    <item>
      <title>Qml module not found  Esri.ArcGISRuntime.Toolkit 100.14</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/qml-module-not-found-esri-arcgisruntime-toolkit/m-p/1216478#M4750</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I&amp;nbsp; using ArcGIS_Runtime_SDK_Qt_Windows_100_14_0 sdk. Im&amp;nbsp; using Qt Creator 7.0.2&amp;nbsp;Based on Qt 6.2.3 (MSVC 2019, 64 bit)&amp;nbsp; and Kits Qt 5.15.2&amp;nbsp; &amp;nbsp;(Android&amp;nbsp; Clang Multi -Abi and&amp;nbsp; MinGW 64-bit ) .&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I want to use Callout as in this example&amp;nbsp;&lt;A title="Show callout" href="https://developers.arcgis.com/qt/qml/sample-code/show-callout/" target="_self"&gt;Show callout&lt;/A&gt;&amp;nbsp; in my project but I can not use Esri.ArcGISRuntime.Toolkit 100.14 library like below in picture. How can I solve this problem ?&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thanks&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="question.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/52278iA83D5B5F10FEE6D8/image-size/large?v=v2&amp;amp;px=999" role="button" title="question.png" alt="question.png" /&gt;&lt;/span&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 27 Sep 2022 13:18:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/qml-module-not-found-esri-arcgisruntime-toolkit/m-p/1216478#M4750</guid>
      <dc:creator>tanerkoka</dc:creator>
      <dc:date>2022-09-27T13:18:16Z</dc:date>
    </item>
    <item>
      <title>Re: Qml module not found  Esri.ArcGISRuntime.Toolkit 100.14</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/qml-module-not-found-esri-arcgisruntime-toolkit/m-p/1216551#M4751</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;Have you cloned and copied the &lt;A href="https://github.com/Esri/arcgis-runtime-toolkit-qt" target="_self"&gt;toolkit repo&lt;/A&gt;? Once you have a copy of the toolkit on your machine you need to do the following (example for a C++ application, QML follows a similar pattern):&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Include the toolkit in .Pro&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;#&lt;/SPAN&gt; &lt;SPAN&gt;path&lt;/SPAN&gt; &lt;SPAN&gt;of&lt;/SPAN&gt; &lt;SPAN&gt;the&lt;/SPAN&gt; &lt;SPAN&gt;toolkit&lt;/SPAN&gt; &lt;SPAN&gt;relative&lt;/SPAN&gt; &lt;SPAN&gt;to&lt;/SPAN&gt; &lt;SPAN&gt;the&lt;/SPAN&gt; &lt;SPAN&gt;sample&lt;BR /&gt;TOOLKIT_PRI_PATH = $$PWD/../../../arcgis-runtime-toolkit-qt&lt;BR /&gt;exists($$TOOLKIT_PRI_PATH/uitools/toolkitqml.pri) {&lt;BR /&gt;   include($$TOOLKIT_PRI_PATH/uitools/toolkitcpp.pri)&lt;BR /&gt;} else {&lt;BR /&gt;   error(TOOLKIT_PRI_PATH is missing which is required to build this application.)&lt;BR /&gt;}&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;2. Include toolkit in main.cpp&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;#include&lt;/SPAN&gt; &lt;SPAN&gt;"Esri/ArcGISRuntime/Toolkit/register.h"&lt;/SPAN&gt;&lt;/PRE&gt;&lt;P&gt;&lt;SPAN&gt;3. Register the component in main&lt;/SPAN&gt;&lt;/P&gt;&lt;PRE&gt;&lt;SPAN&gt;Esri&lt;/SPAN&gt;::&lt;SPAN&gt;ArcGISRuntime&lt;/SPAN&gt;::Toolkit::registerComponents(&lt;SPAN&gt;*&lt;/SPAN&gt;(&lt;SPAN&gt;view&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;engine()));&lt;/PRE&gt;</description>
      <pubDate>Tue, 27 Sep 2022 15:41:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/qml-module-not-found-esri-arcgisruntime-toolkit/m-p/1216551#M4751</guid>
      <dc:creator>Gela</dc:creator>
      <dc:date>2022-09-27T15:41:26Z</dc:date>
    </item>
    <item>
      <title>Re: Qml module not found  Esri.ArcGISRuntime.Toolkit 100.14</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/qml-module-not-found-esri-arcgisruntime-toolkit/m-p/1216867#M4752</link>
      <description>&lt;P&gt;Thanks for answering&amp;nbsp;&lt;A href="https://community.esri.com/t5/user/viewprofilepage/user-id/305812" target="_self"&gt;&lt;SPAN class=""&gt;Gela&lt;/SPAN&gt;&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Not found Toolkit problem was solved but I can't build my app. Here is problems below in picture.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="toolkit.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/52376iB1BD8B05CD3725B5/image-size/medium?v=v2&amp;amp;px=400" role="button" title="toolkit.png" alt="toolkit.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 28 Sep 2022 09:01:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/qml-module-not-found-esri-arcgisruntime-toolkit/m-p/1216867#M4752</guid>
      <dc:creator>tanerkoka</dc:creator>
      <dc:date>2022-09-28T09:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Qml module not found  Esri.ArcGISRuntime.Toolkit 100.14</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/qml-module-not-found-esri-arcgisruntime-toolkit/m-p/1218046#M4754</link>
      <description>&lt;P&gt;Sounds like this could be related to your directory path being too long. Unfortunately, by default Windows will drop characters after a certain length if the path is too long which can result in this. To work around this, there are 2 options:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;1. Enable long paths on your Windows machine. Instructions to do that can be found &lt;A href="https://learn.microsoft.com/en-us/windows/win32/fileio/maximum-file-path-limitation?tabs=registry#enable-long-paths-in-windows-10-version-1607-and-later" target="_self"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;2.&amp;nbsp;&lt;SPAN&gt;Change the shadow build directory to a much shorter path like "&lt;/SPAN&gt;c:\tempbuild" and try to rebuild again.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Let me know if either of these work or if you continue having issues.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Sep 2022 22:43:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/qml-module-not-found-esri-arcgisruntime-toolkit/m-p/1218046#M4754</guid>
      <dc:creator>Gela</dc:creator>
      <dc:date>2022-09-30T22:43:59Z</dc:date>
    </item>
  </channel>
</rss>

