We came across a specific scenario where we wanted to see how our web cookies were repeated with the device. We were able to view a database of cookies that are stored using the "adb shell" on an emulated device. After starting the shell, we were able to track cookies in the database using the following command.
sqlite3 /data/data/com.android.browser/databases/webviewCookiesChromium.db
and select statement:
select * from cookies;
The list of columns can be viewed using the following command:
pragma table_info(cookies);
source share