What are the configuration settings for the GC iOS SDK?

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

  1. ZohoGC.clearData(botId: <#BotId#>) 

Objective-C

  1. [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

  1. import ZohoGCSDK
        ...
        ZohoGC.enableLog(isLogEnabled: <#T##Bool#>)

Objective-C

  1. @import ZohoGCSDK;
         ...
         [ZohoGC enableLogWithIsLogEnabled:<#(BOOL)#>];