Hi!
I'm using 9.0.2 version of database engine in my Android app.
A small test case.
While online i initialize the app (inlcuding FirebaseDatabase.getInstance().setPersistenceEnabled(true);) and read some high level nodes (just IDs).
After that, internet access is shutdown and i'm trying to read some data using these IDs.
The structure is somewhat like this:
idList
id_1
id_2
id_3
dataList
id_1
data_1
data_2
id_2
data_3
data_4
id_3
data_5
data_6
What i expect to see is something like a timeout, error, empty data or anything else.
What i do see is no callbacks after addListenerForSingleValueEvent using this path (i.e. "dataList/id_1")
Is there anything else i should do?
Tested on emulator (different android versions) and on real devices.