Description
Hi, we are using AdForm on our app since 2017, so using different versions of your SDK and different versions of the Android OS.
Our customers are reporting feedbacks for an unusual increase of user data size and we started investigating about it. Now we are using your SDK version 2.5.0
, and we performed some investigations on Android 10 and 11.
We noticed that more or less at every app launch, when we call the AdformTrackingSdk.startTracking
function, the SDK creates a directory called app_webview_{id}
inside the dataDir
and another one called webview_{id}
inside the cacheDir
(with the same {id}
suffix).
The sum of the sizes of the two directories is about 5MB, that if multiplied for the app launches, can become a huge size in few time.
To remove them is not enought to clear the cache because the bigger of the two directories is not inside the cache dir, so is needed to clear user data, but losing also all the other useful data used by our app.
Our question is: is there a way to solve this big data leak?
Thank you.