When i save for example the whole SMS messages as a list and write that to file, that works ok.
But, When you read the file with ReadList and try to connect that one with a SMS object, it comes with an exception : Java.string
sample code (not full):
Dim listSms As List
Dim i As Int
listsms.Initialize
listSms = File.ReadList(File.DirRootExternal,"sms.dat")
For i = 0 To Listsms.Size - 1
Dim Sd As Sms
Sd = ListSms.Get(i) <---- Here it wil Crash!
Log(sd)
Is this a bug?