updateRemoteConfig

fun updateRemoteConfig(configJson: String)

Update remote configuration for Zync SDK.

This method accepts a JSON configuration string that can be used to dynamically control SDK behavior without requiring app updates. Currently supports:

  • CRUD operation ignore list: Skip specific stuck operations and mark them as successful

The configuration persists only in memory and is reset on app restart.

Example JSON structure:

{
"zync": {
"crud_ignore_list": [
{ "crud_id": 123, "user_uid": "user-xyz-123" }
]
}
}

Parameters

configJson

JSON string containing remote configuration