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?