Android error – close() was never explicitly called on database
I think the problem is that you need to close the db when your activity is destroyed. Try adding this to your activity: @Override protected void onDestroy() { super.onDestroy(); if (openHelper != null) { openHelper.close(); } if (cdh != null) { cdh.close(); } } and add this to your CallDataHelper class: public void close() { … Read more