The reference for my question is the ESRI android arcgisruntime example
SceneLayerSelection - a user interactively selects
a building from the scene.
The following line loads the buildings using a URL:
ArcGISSceneLayer sceneLayer = new ArcGISSceneLayer(buildingsURL);
But we want to create a feature layer - or a ServiceFeatureTable - without using a URL
for the feature data source.
For example, we would like to generate a JSON string of our
features and use it to build the feature layer.
Is this possible and if so how is it done?
Thank you for your help.
Jack