Hi all,
I need to access a file within App B from App A and in this case the file is a SQLite db.
Usually I can access the db files within an app using:
How to access a db file within App B from App A ?
Is it possible to build the <path_to_db_file_within_app_b> ?
P.S.
App A and App B are installed within the same device and I known the pkg name of both Apps.
Thanks in advance for your reply
I need to access a file within App B from App A and in this case the file is a SQLite db.
Usually I can access the db files within an app using:
B4X:
SQL1.Initialize(File.DirDefaultExternal, "db1.db" , False)
How to access a db file within App B from App A ?
B4X:
'Code within App A
private PATH_TO_DB_FILE_WITHIN_APP_B as string = "?"
SQL2.Initialize(PATH_TO_DB_FILE_WITHIN_APP_B, "db2.db" , False)
Is it possible to build the <path_to_db_file_within_app_b> ?
P.S.
App A and App B are installed within the same device and I known the pkg name of both Apps.
Thanks in advance for your reply