有没有办法在卸载 APK 期间删除文件
Is there a way to deleting a file during uninstallation of an APK
我正在开发一个项目,该项目由安装在 android 设备上的一组应用程序组成。每个应用程序都将某些文件放在本地存储的共享目录中。
android 中有没有办法在卸载 APK 时删除属于特定应用程序的文件?
如果你有它们就不会 "in a shared directory in local storage"(我将 "local storage" 翻译成 Android SDK 所指的 external storage)。
位于每个应用程序目录中的文件,如 getExternalFilesDir()
、"belong" 到应用程序,并在卸载应用程序时被删除。
位于外部存储 "belong" 其他位置的文件提供给用户,并在卸载应用程序时保留。
我正在开发一个项目,该项目由安装在 android 设备上的一组应用程序组成。每个应用程序都将某些文件放在本地存储的共享目录中。
android 中有没有办法在卸载 APK 时删除属于特定应用程序的文件?
如果你有它们就不会 "in a shared directory in local storage"(我将 "local storage" 翻译成 Android SDK 所指的 external storage)。
位于每个应用程序目录中的文件,如 getExternalFilesDir()
、"belong" 到应用程序,并在卸载应用程序时被删除。
位于外部存储 "belong" 其他位置的文件提供给用户,并在卸载应用程序时保留。