Select to view content in your preferred language

ArcGIS iOS SDK 10.2.3 License Exception (Esri_runtimecore::Common::License_exception)

1427
1
Jump to solution
05-09-2014 12:25 AM
sivalingam
Deactivated User
Hi,

   I am using ArcGIS iOS SDK v10.2.3 to support offline map and feature editing. I Licensed my app at the Basic level as given in the below link.

https://developers.arcgis.com/ios/guide/license-your-app.htm#ESRI_SECTION1_3D7C830FCBCA48798629E8281...


I downloaded the TPK and Layers local to the app without any issues. When I try to delete or save any features in the AGSFeatureTable I am getting below exception.

libc++abi.dylib: terminating with uncaught exception of type Esri_runtimecore::Common::License_exception: License exception


Here is my code.

AGSFeatureTable* fTable = ....;//Layer id 1 table

AGSGDBFeature *featureEdit = ....;//feature edited under layer id 1

AGSGDBFeature *featureDelete = ....;//feature deleted in layer id 1

[fTable saveFeature:featureEdit error:&error];

[fTable deleteFeature:featureEdit error:&error];


Do I need to get Standard license to enable these features?
0 Kudos
1 Solution

Accepted Solutions
DiveshGoyal
Esri Regular Contributor
Yes, you need a standard license for (as per the doc ) -

Local locators (geocoding)
Local routing
Local geodatabase editing
Local geodatabase sync operations with an upload

View solution in original post

0 Kudos
1 Reply
DiveshGoyal
Esri Regular Contributor
Yes, you need a standard license for (as per the doc ) -

Local locators (geocoding)
Local routing
Local geodatabase editing
Local geodatabase sync operations with an upload
0 Kudos