Search code examples
androidandroid-sdcardandroid-install-apk

How to delete the data from sdcard while android application is uninstalling?


I have an application which saves magazines on sdcard. Now i want to delete all the downloaded magazines while application is being uninstall. Is there any way to do that problematically. Please suggest.


Solution

  • If you create file using getExternalStorageDirectory() method it will delete the files belong to your application while delete application

    see the below linl for creating file using that

    Android how to use Environment.getExternalStorageDirectory()