当我卸载我的应用程序时,我还希望删除 Android>数据>(程序包名称)文件夹。
我在清单中添加了以下代码:
<application
android:allowBackup="false"
android:fullBackupContent="false"
android:fullBackupOnly="false"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:largeHeap="true"
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:hardwareAccelerated="true"
android:theme="@style/AppTheme.Launcher">
但是该文件夹仍然留在后面。我检查了设备的“备份和还原”设置,但已关闭。
我想念什么?