I\'m using Room in order to persist data.
I have a Entity that has a automatically generated (autoGenerate) primary key that mimics a ticket system.
On every applica
You could create an in memory database instead of creating it on disk. Then you'll start with a clean slate every time. You may want to create a memory or disk based database depending on the value of BuildConfig.DEBUG.