Android Question Log results in crash ?

tufanv

Expert
Licensed User
Longtime User
Hello,

I have some reports from the crashlytics that many users are crashing at the line:
LogColor(Job.GetString,Colors.cyan)

Error is:

B4X:
Fatal Exception: java.io.FileNotFoundException
/data/user/0/ct.canlidoviz/cache/481: open failed: ENOENT (No such file or directory)
libcore.io.IoBridge.open

Is this possible?
 

sfsameer

Well-Known Member
Licensed User
Longtime User
Hello,

I have some reports from the crashlytics that many users are crashing at the line:
LogColor(Job.GetString,Colors.cyan)

Error is:

B4X:
Fatal Exception: java.io.FileNotFoundException
/data/user/0/ct.canlidoviz/cache/481: open failed: ENOENT (No such file or directory)
libcore.io.IoBridge.open

Is this possible?
Hello,

I think it's possible if the line :
B4X:
LogColor(Job.GetString,Colors.cyan)

Is not after :
B4X:
If Job.Success Then

So make sure you check that the job is successful first then get the Job.GetString

Thank you,
Saif
 
Upvote 0

sfsameer

Well-Known Member
Licensed User
Longtime User
Yes you are right. I forgot to add it before the line.Thanks
You are the most welcome :)

*Also make sure you call the job.release after you are finished from the httpjob
Reference :

:)
 
Upvote 0
Top