Hi friends,
I have doubt here,for example when build Android app with sqlite db using native code, how can corona app access the same db.and is it possible? urgently need help.
Thanks friends
Hi friends,
I have doubt here,for example when build Android app with sqlite db using native code, how can corona app access the same db.and is it possible? urgently need help.
Thanks friends
Both Apple and Google enforce *sandboxed* environments so that apps can’t read/write other apps data files. The SQLite databases live in each apps sandbox.
Hi Rob,
Thanks for the reply, for Android there is specific feature using share id of sqlite in manifest file. Is there any corona feature doing the same thing?
Not that I’m aware of.
Hi Rob,
First of all thanks alot for your reply, can corona app access folder and files in internal storage(Android version)?
Thanks alot again.
It can access files in it’s sandbox, which includes the Corona file references of:
system.ResourceDirectory (read only)
system.DocumentsDirectory
system.TemporaryDirectory
system.CachesDirectory (aliased to system.TemporaryDirectory on Android)
Hi Rob,
Thanks for the reply,really helpful guide to continue my corona app : )
Both Apple and Google enforce *sandboxed* environments so that apps can’t read/write other apps data files. The SQLite databases live in each apps sandbox.
Hi Rob,
Thanks for the reply, for Android there is specific feature using share id of sqlite in manifest file. Is there any corona feature doing the same thing?
Not that I’m aware of.
Hi Rob,
First of all thanks alot for your reply, can corona app access folder and files in internal storage(Android version)?
Thanks alot again.
It can access files in it’s sandbox, which includes the Corona file references of:
system.ResourceDirectory (read only)
system.DocumentsDirectory
system.TemporaryDirectory
system.CachesDirectory (aliased to system.TemporaryDirectory on Android)
Hi Rob,
Thanks for the reply,really helpful guide to continue my corona app : )