In order to clear the resources taken up by SDK, you can use the method TruecallerSDK.clear(); You can call this method when the activity/fragment in which you have initialised the SDK is getting killed/destroyed.
TruecallerSDK.clear();
For example :
@Override protected void onDestroy() { super.onDestroy(); TruecallerSDK.clear(); }
Last updated 5 years ago