While debugging, I noticed that its not writing to log.
Is there some setting I am missing?
Am using the exact same code as in the Phone documentation for reading phone messages...
Thanks!
Is there some setting I am missing?
Am using the exact same code as in the Phone documentation for reading phone messages...
Thanks!
B4X:
Dim SmsMessages1 As SmsMessagesDim List1 AsList
List1 = SmsMessages1.GetAllSince(DateTime.Add(DateTime.Now, 0, 0, -7))For i = 0To List1.Size - 1Dim Sms As Sms
Sms = List1.Get(i)
Log(Sms)Next