I wanted to find out if offline editing capabilities are planned for the Android SDK (similar to the iOS SDK) or if this is already available in the current build? Thanks!
1 - I think offline adding is not a question. Just save created features on internal or external storage (in text file - JSON, xml, CSV or any other format you can read and write with JAVA code).
2 - If feature must be deleted offline, you must know (offline) anything about this feature: some unique attributes (OBJECTID or globalId or ... any other unique attribute value), if you know it make the same steps as adding offline.
3 - Editing offline means, what you know (offline) all editable attributes, if you know it make the same steps as adding offline.
4 - If device is connected to internet - synchronize data: read saved addings, deletes and edits - convert to JSON - send to server. Listen server response - edit conflicts. ...