In my app android, I can access to my sqlite database from:
1) Service android, every 60 seconds.
2) After pressure of button (onclik)
If I press the bu
You can override the onDestroy() event for the service and try to access the database on it:
onDestroy()
@Override public void onDestroy() { // *** access to my database *** super.onDestroy(); }