TagStore data in SD-card and How to delete this stored data when the application is uninstall

How to store the data in to the SD-card and to delete this stored data when the application is uninstalled in Android

H

For Guidance follow this link store file in to the sdcard use this code private File cacheDir; if (android.os.Environment.getExternalStorageState().equals(android.os.Environment.MEDIA_MOUNTED)) cacheDir=new File(android.os.Environment.getExternalStorageDirectory(),"/Android/data/YOUR PACKAGE_NAME/files/"); else cacheDir=context.getCacheDir(); if(!cacheDir.exists()) cacheDir.mkdirs(); } If...

Category