I’m new to android apps development and I have a basic sqlite question.
What if two different apps use a table with the same name and signature, won’t there be any conflicts? Does each app create it’s own sqlite instance?
I’m new to android apps development and I have a basic sqlite question. What
Share
Yes, every application has its own database (see here). Applications can share data among each other by using Content Providers.