Android Question DirInternal file rList

sigster

Active Member
Licensed User
Longtime User
Hi

when I check DirInternal for my database

then I also see this file = rList

this is inside the file

B4X:
?????sr????java.util.ArrayListx?????a?????I????sizexp???????w????????t??
2130837504x

I am not writing any file only the database SQLite file , what file is this ?

Regards
Sigster
 

LucaMs

Expert
Licensed User
Longtime User
Maybe you previously installed an app that has the same package name and when you uninstalled it kept that file there.

This happens if the app has the following line in the manifest file:
B4X:
SetApplicationAttribute(android:allowBackup, "false")
 
Upvote 0

sigster

Active Member
Licensed User
Longtime User
Nothing happened

I try to delete this file when I use SetApplicationAttribute and it show up again
and I change the package name same

B4X:
SetApplicationAttribute(android:allowBackup, "false")

B4X:
Log(File.Delete(File.DirInternal,"rList"))
 
Upvote 0
Top