Esenthel
Administrator
|
RE: Android: file in storage not created
Are you adding a slash after system path?
SystemPath(SP_APP_DATA).tailSlash(true)+"file.db"
Should work fine
|
|
09-14-2016 01:53 AM |
|
Houge
Member
|
RE: Android: file in storage not created
Yes, i use:
Code:
#if MOBILE
path = SystemPath(SP_APP_DATA);
path = path.tailSlash(true) + "testdb.db";
#endif
|
|
09-14-2016 05:43 AM |
|
Esenthel
Administrator
|
RE: Android: file in storage not created
Thank you for reporting the issue.
I was able to reproduce the problem with the provided project.
I will investigate this and try to solve the problem ASAP.
|
|
09-14-2016 10:33 AM |
|
Esenthel
Administrator
|
RE: Android: file in storage not created
Sorry for the problem.
Simply forgot to convert \ slashes to / on non-Windows platforms for SQLite function
Fix is now available on GitHub.
Tested on Galaxy Note4 and works OK now.
|
|
09-14-2016 10:53 AM |
|