<?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: Adding a feature to an offline geodatabase using GeodatabaseFeatureTable::addFeature in Qt Maps SDK Questions</title>
    <link>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595935#M3044</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I tried that but there's still something I'm doing wrong. My app implements a local geodatabase with a single FeatureTable. I enabled a function where if the user taps the screen, it will add a point to the GeodatabaseFeatureTable in the offline geodatabase. When I run this app&amp;nbsp; directly from Qt Creator on my development machine I can successfully add a point which later gets syncronized and appears in my hosted feature service. Then I upload the app to my AGOL account, download it to my iPhone and run it in Player. I attempt to perform the same action of adding a point by tapping the screen but it won't add the new feature to the offline table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the code:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;(&lt;SPAN style="font-style: italic; color: #000000;"&gt;local&lt;/SPAN&gt;.featureTableStatus&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;===&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;Enums&lt;/SPAN&gt;.FeatureTableStatusInitialized)&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;{ &lt;/P&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #000000;"&gt;local&lt;/SPAN&gt;.createNewFeature();&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newPoint&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;ArcGISRuntime&lt;/SPAN&gt;.createObject(&lt;SPAN style="color: #008000;"&gt;"Point"&lt;/SPAN&gt;,{x:&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;pointX&lt;/SPAN&gt;,y:&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;pointY&lt;/SPAN&gt;,spatialReference:{wkid:102100}})&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;.geometry&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newPoint&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;.setAttributeValue(&lt;SPAN style="color: #008000;"&gt;"ID"&lt;/SPAN&gt;,&lt;SPAN style="color: #008000;"&gt;"pointID"&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;.setAttributeValue(&lt;SPAN style="color: #008000;"&gt;"Name"&lt;/SPAN&gt;,&lt;SPAN style="color: #008000;"&gt;"manual&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;point"&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;ms&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;new&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #0055af;"&gt;Date&lt;/SPAN&gt;().getTime();&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;.setAttributeValue(&lt;SPAN style="color: #008000;"&gt;"Time"&lt;/SPAN&gt;,&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;ms&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;.setAttributeValue(&lt;SPAN style="color: #008000;"&gt;"Longitude"&lt;/SPAN&gt;,&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;pointX&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;.setAttributeValue(&lt;SPAN style="color: #008000;"&gt;"Latitude"&lt;/SPAN&gt;,&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;pointY&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeatId&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #000000;"&gt;local&lt;/SPAN&gt;.addFeature(&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #000000;"&gt;gpsDetails&lt;/SPAN&gt;.text&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;+=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;"Manually&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;added:\n"&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;+&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #0055af;"&gt;JSON&lt;/SPAN&gt;.stringify(&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;.json)&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;+&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;"\n\n"&lt;/SPAN&gt;;&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #000000;"&gt;statusText&lt;/SPAN&gt;.text&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;"Offline.&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;Point&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;added&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;to&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;offline&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;geodatabase:&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;+&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeatId&lt;/SPAN&gt;;&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #000000;"&gt;syncButton&lt;/SPAN&gt;.enabled&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;true;&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;}&lt;/PRE&gt;&lt;P&gt;&lt;SPAN style="font-style: italic; color: #000000;"&gt;local&lt;/SPAN&gt; is a GeodatabaseFeatureTable in the offline geodatabase. &lt;SPAN style="font-style: italic; color: #2985c7;"&gt;pointX &lt;/SPAN&gt;and&amp;nbsp; &lt;SPAN style="color: #2985c7; font-style: italic;"&gt;pointY &lt;/SPAN&gt;are the &lt;SPAN style="font-style: italic; color: #2985c7;"&gt;mouse&lt;/SPAN&gt;.mapX and &lt;SPAN style="font-style: italic; color: #2985c7;"&gt;mouse&lt;/SPAN&gt;.mapY of the screen tap event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result of &lt;SPAN style="font-style: italic; color: #000000;"&gt;local&lt;/SPAN&gt;.addFeature(&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;) in the iOS deployment is always -1 (no feature was added)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any other suggestions are very welcome. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ken&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Mar 2016 14:36:50 GMT</pubDate>
    <dc:creator>KenGorton</dc:creator>
    <dc:date>2016-03-25T14:36:50Z</dc:date>
    <item>
      <title>Adding a feature to an offline geodatabase using GeodatabaseFeatureTable::addFeature</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595932#M3041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my app I have enabled adding features to a hosted feature service by following the examples of the sample apps "Add and edit features" and "Local geodatabase editing". Based on the example of "Add and edit features" if I edit the service directly using&amp;nbsp; &lt;SPAN style="font-style: italic; color: #000000;"&gt;GeodatabaseFeatureServiceTable::&lt;/SPAN&gt;addFeature passing in the feature JSON I create for the feature to be added, it works. The result is the OBJECTID of the new feature.&lt;/P&gt;&lt;P&gt;However, if I create an offline geodatabase of the same feature service as in "Local geodatabase editing" and add a feature to it using &lt;SPAN style="color: #000000; font-style: italic;"&gt;GeodatabaseFeatureTable&lt;/SPAN&gt;::addFeature passing in the same feature JSON, it fails. The result is always -1.&lt;/P&gt;&lt;P&gt;What am I doing wrong?&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 16:07:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595932#M3041</guid>
      <dc:creator>KenGorton</dc:creator>
      <dc:date>2016-03-23T16:07:54Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a feature to an offline geodatabase using GeodatabaseFeatureTable::addFeature</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595933#M3042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Tough to say what the issue is without seeing any code or data. Perhaps you can share? Also, have you tried creating the feature with ArcGISRuntime.createObject(), and then setting the geometry and any required attributes? I personally find this to be a more reliable method of creating objects than creating the JSON representation of the object, as this method seems more error prone (IMO).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 18:19:48 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595933#M3042</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2016-03-23T18:19:48Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a feature to an offline geodatabase using GeodatabaseFeatureTable::addFeature</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595934#M3043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for the suggestion. I’ll give that a try and if I still have trouble I am happy to share my code if you’re inclined to have a look at it. Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Mar 2016 18:22:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595934#M3043</guid>
      <dc:creator>KenGorton</dc:creator>
      <dc:date>2016-03-23T18:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a feature to an offline geodatabase using GeodatabaseFeatureTable::addFeature</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595935#M3044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So I tried that but there's still something I'm doing wrong. My app implements a local geodatabase with a single FeatureTable. I enabled a function where if the user taps the screen, it will add a point to the GeodatabaseFeatureTable in the offline geodatabase. When I run this app&amp;nbsp; directly from Qt Creator on my development machine I can successfully add a point which later gets syncronized and appears in my hosted feature service. Then I upload the app to my AGOL account, download it to my iPhone and run it in Player. I attempt to perform the same action of adding a point by tapping the screen but it won't add the new feature to the offline table. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the code:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;if&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;(&lt;SPAN style="font-style: italic; color: #000000;"&gt;local&lt;/SPAN&gt;.featureTableStatus&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;===&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;Enums&lt;/SPAN&gt;.FeatureTableStatusInitialized)&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;{ &lt;/P&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #000000;"&gt;local&lt;/SPAN&gt;.createNewFeature();&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newPoint&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;ArcGISRuntime&lt;/SPAN&gt;.createObject(&lt;SPAN style="color: #008000;"&gt;"Point"&lt;/SPAN&gt;,{x:&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;pointX&lt;/SPAN&gt;,y:&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;pointY&lt;/SPAN&gt;,spatialReference:{wkid:102100}})&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;.geometry&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newPoint&lt;/SPAN&gt;&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;.setAttributeValue(&lt;SPAN style="color: #008000;"&gt;"ID"&lt;/SPAN&gt;,&lt;SPAN style="color: #008000;"&gt;"pointID"&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;.setAttributeValue(&lt;SPAN style="color: #008000;"&gt;"Name"&lt;/SPAN&gt;,&lt;SPAN style="color: #008000;"&gt;"manual&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;point"&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;ms&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;new&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #0055af;"&gt;Date&lt;/SPAN&gt;().getTime();&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;.setAttributeValue(&lt;SPAN style="color: #008000;"&gt;"Time"&lt;/SPAN&gt;,&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;ms&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;.setAttributeValue(&lt;SPAN style="color: #008000;"&gt;"Longitude"&lt;/SPAN&gt;,&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;pointX&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;.setAttributeValue(&lt;SPAN style="color: #008000;"&gt;"Latitude"&lt;/SPAN&gt;,&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;pointY&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="color: #808000;"&gt;var&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeatId&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #000000;"&gt;local&lt;/SPAN&gt;.addFeature(&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #000000;"&gt;gpsDetails&lt;/SPAN&gt;.text&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;+=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;"Manually&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;added:\n"&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;+&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #0055af;"&gt;JSON&lt;/SPAN&gt;.stringify(&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;.json)&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;+&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;"\n\n"&lt;/SPAN&gt;;&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #000000;"&gt;statusText&lt;/SPAN&gt;.text&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;"Offline.&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;Point&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;added&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;to&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;offline&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;geodatabase:&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="color: #008000;"&gt;"&lt;/SPAN&gt;&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;+&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeatId&lt;/SPAN&gt;;&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-style: italic; color: #000000;"&gt;syncButton&lt;/SPAN&gt;.enabled&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;=&lt;SPAN style="color: #c0c0c0;"&gt; &lt;/SPAN&gt;true;&lt;/PRE&gt;&lt;PRE style="text-indent: 0px;"&gt;&lt;SPAN style="color: #c0c0c0;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;}&lt;/PRE&gt;&lt;P&gt;&lt;SPAN style="font-style: italic; color: #000000;"&gt;local&lt;/SPAN&gt; is a GeodatabaseFeatureTable in the offline geodatabase. &lt;SPAN style="font-style: italic; color: #2985c7;"&gt;pointX &lt;/SPAN&gt;and&amp;nbsp; &lt;SPAN style="color: #2985c7; font-style: italic;"&gt;pointY &lt;/SPAN&gt;are the &lt;SPAN style="font-style: italic; color: #2985c7;"&gt;mouse&lt;/SPAN&gt;.mapX and &lt;SPAN style="font-style: italic; color: #2985c7;"&gt;mouse&lt;/SPAN&gt;.mapY of the screen tap event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The result of &lt;SPAN style="font-style: italic; color: #000000;"&gt;local&lt;/SPAN&gt;.addFeature(&lt;SPAN style="font-style: italic; color: #2985c7;"&gt;newFeature&lt;/SPAN&gt;) in the iOS deployment is always -1 (no feature was added)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any other suggestions are very welcome. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ken&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 14:36:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595935#M3044</guid>
      <dc:creator>KenGorton</dc:creator>
      <dc:date>2016-03-25T14:36:50Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a feature to an offline geodatabase using GeodatabaseFeatureTable::addFeature</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595936#M3045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ken,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems like you are doing everything right, and if it works on the desktop, then it seems like your code is generally correct. The only things I can think of that could be different on desktop vs iOS is where you are saving the data. Perhaps it doesn't have the correct permissions or something like that? It might be worth while to contact Esri Support to help you troubleshoot this further to help narrow down the issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-Luke&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 16:37:53 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595936#M3045</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2016-03-25T16:37:53Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a feature to an offline geodatabase using GeodatabaseFeatureTable::addFeature</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595937#M3046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Something additional: In the interest of thoroughness I modified the sample "Local geodatabase editing" to allow adding features instead of only editing existing ones. Then I tested it on Windows, iOS and Android with the same results: I could add features on the desktop but not when the app was deployed on an iPhone or an Android phone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;A difference&lt;/STRONG&gt; is that when running on iOS and Android &lt;STRONG&gt;it was running within Player&lt;/STRONG&gt;. So I installed Player for windows on my development machine and when I ran the apps, I got the same result as on iOS and Android - no feature added to the offline geodatabase.So it would seem there is something about Player that is getting in the way. Not sure what to do next, but thought I'd add this to the conversation. &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 18:40:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595937#M3046</guid>
      <dc:creator>KenGorton</dc:creator>
      <dc:date>2016-03-25T18:40:09Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a feature to an offline geodatabase using GeodatabaseFeatureTable::addFeature</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595938#M3047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Interesting... When you say you ran from Qt Creator in the desktop, were you doing a local build and run, or how did you run it from the desktop? Many people using AppStudio still just run the app through the player from Qt Creator. It is invoked differently than when used through the AppStudio app, but it is still invoking the same player app.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 19:05:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595938#M3047</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2016-03-25T19:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a feature to an offline geodatabase using GeodatabaseFeatureTable::addFeature</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595939#M3048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Alt&lt;EM&gt;Shift&lt;/EM&gt;R or Tools&amp;gt;External&amp;gt;AppStudio&amp;gt;Run&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was wondering if it also uses Player when running that way. I would be happy to do a screen share and show you what I did just to make I am explaining myself correctly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 19:10:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595939#M3048</guid>
      <dc:creator>KenGorton</dc:creator>
      <dc:date>2016-03-25T19:10:58Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a feature to an offline geodatabase using GeodatabaseFeatureTable::addFeature</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595940#M3049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ken, I have the same issue. When I capture the error it points me to a licensing issue. (I don't have my code with me right now but I think &lt;A href="https://developers.arcgis.com/qt/qml/api-reference/class_geodatabase_feature_table_edit_errors.html"&gt;this&lt;/A&gt; is how you can capture the error.).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Mar 2016 19:21:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595940#M3049</guid>
      <dc:creator>TobiasFimpel1</dc:creator>
      <dc:date>2016-03-25T19:21:34Z</dc:date>
    </item>
    <item>
      <title>Re: Adding a feature to an offline geodatabase using GeodatabaseFeatureTable::addFeature</title>
      <link>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595941#M3050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It is probably a good question to post in the AppStudio space. I am not sure how they handle licensing in the player app, and if it changes depending on how it is run (through the desktop or from a mobile device). &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Mar 2016 18:13:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/qt-maps-sdk-questions/adding-a-feature-to-an-offline-geodatabase-using/m-p/595941#M3050</guid>
      <dc:creator>LucasDanzinger</dc:creator>
      <dc:date>2016-03-29T18:13:20Z</dc:date>
    </item>
  </channel>
</rss>

