Saturday, April 28, 2018

How to find out the AD Junk present in the device?

Leave a Comment

I am trying to find out the Ad Junk present (Files which are Downloaded by the AD SDK of other apps).

This is what I have been able to find out till now -

I am loading the list of all the files in the devices and them checking them and grouping them like this

if (file.getPath().toLowerCase().endsWith(".temp") ) {       //Temp Files found                                    } else if (file.getName().endsWith(".apk") && file.canWrite())  {      //Apk Files found                    } 

There are many other cleaner which find out the junk files present in the Device. Even I am trying to achieve the same. Can any one help me on how to identify whether the file is an AD Junk file or not?

1 Answers

Answers 1

You can Delete Junk File by

File[] files = getBaseContext().getCacheDir().listFiles();         for (File file : files) {     file.delete(); } 

And Put this permissions in manifest

<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> 
If You Enjoyed This, Take 5 Seconds To Share It

0 comments:

Post a Comment