I am using android build target vendor version 2.2.
I want to access/read sqlite3 database file of an application A from an application B. Is it possible to do so? because i don’t want to import that DB file of apps A in Apps B.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Short answer is no, not directly, although it is possible to expose the data from application A via a
ContentProviderand consume it from application B in a similar fashion.See here for more on
ContentProviders.