I'm developing android apps and using AdColony SDK to display video ads. The problem I found is that it keeps downloading video ads and store them on my device.
I used adb shell
to have a deep inspect of the file system on my android device. In folder /data/data/com.package.name/
, there is a folder called files/adc/media
, which stores a number of png
and m4v
files. Those m4v
files are the video ads (15 or 30 seconds long).
Initially, when I install my app and launch it for the first time, there were 2 video ads in that folder, but after a play with the app a while, there are more video ads being downloaded and stored there. Some of the videos might be 10MB large. And when I go to device settings->applications->my app, the Data grows to 45MB and seems like it just keeps growing!
I bet even if I could delete them, it will download these videos again. So is there any way to stop it from downloading video ads? Or can I set a max number of video ads it is allowed to download?