Re: SQLite and Android devices

2016-04-28 Thread Roger Eller
Here's an old reference, but it's probably still relevant. https://www.mail-archive.com/use-livecode%40lists.runrev.com/msg2.html On Thu, Apr 28, 2016 at 11:38 AM, Alain Vezina wrote: > Hi Ralph, > > Thanks for the information. I tried it and now I can look inside my > Android app. > > But

Re: SQLite and Android devices

2016-04-28 Thread Alain Vezina
Hi Ralph, Thanks for the information. I tried it and now I can look inside my Android app. But my main problem is that my DB can’t be opened by the program I installed in my Android device. That the same for HTML files. Is it a question of permission I have to get or something like? You know, I

Re: SQlite and Android devices

2016-04-28 Thread Roger Eller
The structure of an APK is the same as ZIP. Rename the file to whatever.zip and you can look around. Don't change the contents and try to rename a .zip to .apk because the checksum will fail. ~Roger On Thu, Apr 28, 2016 at 8:55 AM, Alain Vezina wrote: > Hi all, > > I am testing one of my app

RE: SQLite and Android devices

2016-04-28 Thread Ralph DiMola
The apk is just a zip file with an apk extension. Rename it .zip and you can look inside. The database can't be opened in the apk(the engine folder). The apk is read-only. Even if you don't write to it you must still copy it out to the documents folder and open it there. I never tried to open a DB