Hi @mikekara,
To understand the problem, could you please share how to make instance of Manager and Database, and how to access database from multiple activities?
do i have to reduce the manager instances accessing the same db?
We recommend one Manager instance per application. Following sample is how to create single instance of Manager in Application class.
https://github.com/couchbaselabs/ToDoLite-Android/blob/master/ToDoLite/src/main/java/com/couchbase/todolite/Application.java
Creating multiple Database instances per Manager is fine. But each database name should be unique.
This might solve your issue.