What are the configuration settings for the GC iOS SDK?
Clearing local data:
Use the following method to delete any local data that has been saved inside the SDK, such as databases and files:
Swift
- ZohoGC.clearData(botId: <#BotId#>)
Objective-C
- [ZohoGC clearDataWithBotId:<#BotId#>];
SDK logging:
By default, logs are disabled for the SDK. To get the debug logs printed in logcat, enable the logs by the following method:
Swift
import ZohoGCSDK
...
ZohoGC.enableLog(isLogEnabled: <#T##Bool#>)
Objective-C
- @import ZohoGCSDK;
...
[ZohoGC enableLogWithIsLogEnabled:<#(BOOL)#>];