是否可以删除我的 Android 应用程序中未使用的文件
我目前正在编写“第一次登录教程后一次”,并且由于它应该只在用户第一次启动应用程序后显示一次,所以我想删除所有不必要的文件,例如我只使用的图片在本教程中。
那么有没有办法删除 .apk 中附带的一些文件?
I am currently programming an "One time after first login tutorial" and since it should be only shown one time after the user starts the application for the first time, I would like to remove all the unnecessary files like for example pictures which I only use in this tutorial.
So is there a way to remove some of these files which are shipped within the .apk ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Android apk 是只读文件,因此一旦文件成为 apk 的一部分,就无法删除。
一种选择是用户第一次安装应用程序时从网络下载文件,然后将其放在 SD 卡或本地,然后在需要时将其删除。
The Android apk is a read only file, so once a file is part of an apk, it cannot be removed.
An option would be to download the files from the network the first time the user installs the app and then put it on the sd card or locally and then delete it when you want it.