Edit features—ArcGIS Runtime SDK for Android | ArcGIS for Developers explains only adding and updating features with geometry... is there an example for adding features to a ServiceFeatureTable without geometry?
However, it is even possible to add features to a ServiceFeatureTable without geometry?
I've read the documentation on following site: FeatureTable (ArcGIS Runtime SDK for Java 100.7.0)
There are two different methods. For adding a Feature to a Table without geometry I have to chose the first one below, don't I? Therefore I have to define a schema... I'm right? Is there anyway an example for this?
Thank you very much for your reply.
public Feature createFeature()
public Feature createFeature(Map<String,Object> attributes, Geometry geometry)